Privileges.constants.ts8 lines · main
| 1 | export const COLUMN_PRIVILEGE_TYPES = ['SELECT', 'INSERT', 'UPDATE'] as const |
| 2 | export type ColumnPrivilegeType = (typeof COLUMN_PRIVILEGE_TYPES)[number] |
| 3 | |
| 4 | export const TABLE_PRIVILEGE_TYPES = ['DELETE'] as const |
| 5 | export type TablePrivilegeType = (typeof TABLE_PRIVILEGE_TYPES)[number] |
| 6 | |
| 7 | export const ALL_PRIVILEGE_TYPES = [...COLUMN_PRIVILEGE_TYPES, ...TABLE_PRIVILEGE_TYPES] |
| 8 | export type PrivilegeType = ColumnPrivilegeType | TablePrivilegeType |