You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ui-state.view-model.ts 374B

12345678910111213141516171819
  1. export class UiStateSideNavViewModel {
  2. mode: string;
  3. opened: boolean;
  4. displayMenuButton: boolean;
  5. }
  6. export class UiStateToolbarViewModel {
  7. title: string;
  8. }
  9. export class UiStatePageViewModel {
  10. title: string;
  11. }
  12. export class UiStateViewModel {
  13. sidenav: UiStateSideNavViewModel;
  14. page: UiStatePageViewModel;
  15. toolbar: UiStateToolbarViewModel;
  16. }