123456789101112131415161718192021 |
- export const MAX_SCALE = 5;
- export const MIN_SCALE = 0.25;
- export const RENDER_RANGE = 3;
- export const MARKUP_TYPE: Record<string, any> = {
- highlight: 'Highlight',
- underline: 'Underline',
- squiggly: 'Squiggly',
- strikeout: 'StrikeOut',
- };
- export const ANNOTATION_TYPE: Record<string, any> = {
- ...MARKUP_TYPE,
- ink: 'Ink',
- freetext: 'FreeText',
- text: 'Text',
- square: 'Square',
- circle: 'Circle',
- line: 'Line',
- arrow: 'Line',
- };
|