Types.ts 384 B

1234567891011121314151617181920
  1. export enum ALL_ROUTER_TYPES {
  2. // '/'
  3. OVERVIEW = 'overview',
  4. // '/collections'
  5. COLLECTIONS = 'collections',
  6. // '/collections/:collectionId'
  7. COLLECTION_DETAIL = 'collection_detail',
  8. // 'search'
  9. SEARCH = 'search',
  10. // 'system'
  11. SYSTEM = 'system',
  12. // plugins
  13. PLUGIN = 'plugin',
  14. USER = 'user',
  15. }
  16. export type NavInfo = {
  17. navTitle: string;
  18. backPath: string;
  19. };