| 3 | export const DEFAULT_ANIMATION_DURATION = 800; |
| 4 | |
| 5 | export interface Rect { |
| 6 | x: number; |
| 7 | y: number; |
| 8 | w: number; |
| 9 | h: number; |
| 10 | } |
| 11 | |
| 12 | export type RoughAnnotationType = 'underline' | 'box' | 'circle' | 'highlight' | 'strike-through' | 'crossed-off' | 'bracket'; |
| 13 | export type FullPadding = [number, number, number, number]; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…