ui.ts 235 B

123456
  1. export const SidebarContents = {
  2. CUSTOM: 'custom',
  3. RECENT: 'recent',
  4. } as const;
  5. export const AllSidebarContents = Object.values(SidebarContents);
  6. export type SidebarContents = typeof SidebarContents[keyof typeof SidebarContents];