1 2 3 4 5 6 7
export const AbuseState = { PENDING: 1, REJECTED: 2, ACCEPTED: 3 } as const export type AbuseStateType = typeof AbuseState[keyof typeof AbuseState]