12345678910111213141516171819202122232425262728 |
- export type StateType = {
- displayMode: 'full' | 'normal';
- navbarState: 'search' | 'annotations' | 'thumbnails' | '';
- sidebarState:
- | 'markup-tools'
- | 'create-form'
- | 'watermark'
- | 'highlight'
- | 'freehand'
- | 'text'
- | 'sticky'
- | 'shape'
- | '';
- markupToolState: 'highlight' | 'freehand' | 'text' | 'sticky' | 'shape' | '';
- info: { token: string; id: string };
- initiated: boolean;
- isLoading: boolean;
- };
- export default {
- displayMode: 'full',
- navbarState: '',
- sidebarState: 'highlight',
- markupToolState: '',
- info: {},
- initiated: false,
- isLoading: false,
- };
|