user-group.ts 406 B

12345678910
  1. export const SearchTypes = {
  2. FORWARD: 'forward',
  3. PARTIAL: 'partial',
  4. BACKWORD: 'backword',
  5. } as const;
  6. export type SearchType = typeof SearchTypes[keyof typeof SearchTypes];
  7. export const PageActionOnGroupDelete = { publicize: 'publicize', delete: 'delete', transfer: 'transfer' } as const;
  8. export type PageActionOnGroupDelete = typeof PageActionOnGroupDelete[keyof typeof PageActionOnGroupDelete];