8 lines
155 B
TypeScript
8 lines
155 B
TypeScript
export const AbuseState = {
|
|
PENDING: 1,
|
|
REJECTED: 2,
|
|
ACCEPTED: 3
|
|
} as const
|
|
|
|
export type AbuseStateType = typeof AbuseState[keyof typeof AbuseState]
|