initialMainState.ts 426 B

123456789101112131415
  1. export type StateType = {
  2. displayMode: 'full' | 'normal';
  3. navbarState: 'search' | 'annotations' | 'thumbnails' | '';
  4. sidebarState: 'markup-tools' | 'create-form' | 'watermark' | '';
  5. markupToolState: 'highlight' | 'freehand' | 'text' | 'sticky' | 'shape' | '';
  6. info: {token: string; id: string};
  7. };
  8. export default {
  9. displayMode: 'full',
  10. navbarState: '',
  11. sidebarState: '',
  12. markupToolState: '',
  13. info: {},
  14. };