| 21 | } |
| 22 | |
| 23 | export interface RoughAnnotationConfigBase { |
| 24 | animate?: boolean; // defaults to true |
| 25 | animationDuration?: number; // defaulst to 1000ms |
| 26 | color?: string; // defaults to currentColor |
| 27 | strokeWidth?: number; // default based on type |
| 28 | padding?: RoughPadding; // defaults to 5px |
| 29 | iterations?: number; // defaults to 2 |
| 30 | brackets?: BracketType | BracketType[]; // defaults to 'right' |
| 31 | } |
| 32 | |
| 33 | export interface RoughAnnotation extends RoughAnnotationConfigBase { |
| 34 | isShowing(): boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…