Files
flood/shared/schema/constants/Auth.ts
Jesse Chan 9e03d2a385 shared: schema: split enums from schemas
Otherwise zod will be included in client dependency graph and
increase the bundle size by 10kB unnecessarily.
2020-10-28 12:34:52 +08:00

6 lines
119 B
TypeScript

// eslint-disable-next-line import/prefer-default-export
export enum AccessLevel {
USER = 5,
ADMINISTRATOR = 10,
}