ui.ts 275 B

1234567
  1. export const SidebarContentsType = {
  2. CUSTOM: 'custom',
  3. RECENT: 'recent',
  4. TREE: 'tree',
  5. } as const;
  6. export const AllSidebarContentsType = Object.values(SidebarContentsType);
  7. export type SidebarContentsType = typeof SidebarContentsType[keyof typeof SidebarContentsType];