ui.ts 259 B

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