2
0

user-ui-settings.ts 362 B

12345678910111213
  1. import { IUser } from './user';
  2. import { SidebarContentsType } from './ui';
  3. import { Ref } from './common';
  4. export interface IUserUISettings {
  5. user: Ref<IUser> | null;
  6. isSidebarCollapsed: boolean,
  7. currentSidebarContents: SidebarContentsType,
  8. currentProductNavWidth: number,
  9. preferDrawerModeByUser: boolean,
  10. preferDrawerModeOnEditByUser: boolean,
  11. }