1234567891011121314151617181920 |
- export enum ALL_ROUTER_TYPES {
- // '/'
- OVERVIEW = 'overview',
- // '/collections'
- COLLECTIONS = 'collections',
- // '/collections/:collectionId'
- COLLECTION_DETAIL = 'collection_detail',
- // 'search'
- SEARCH = 'search',
- // 'system'
- SYSTEM = 'system',
- // plugins
- PLUGIN = 'plugin',
- USER = 'user',
- }
- export type NavInfo = {
- navTitle: string;
- backPath: string;
- };
|