UNPKG

nhb-express

Version:

Minimal Express + TypeScript scaffolder with modular structure and flexible stack choices.

9 lines (6 loc) 257 B
/** User Roles */ export const USER_ROLES = ['super_admin', 'admin', 'user'] as const; /**Admin Roles */ export const ADMIN_ROLES = USER_ROLES.filter((role) => role !== 'user'); /** Collection Names */ export const COLLECTIONS = ['N/A', 'User'] as const;