(e: HTMLElement, config: RoughAnnotationConfig)
| 19 | _animationDelay = 0; |
| 20 | |
| 21 | constructor(e: HTMLElement, config: RoughAnnotationConfig) { |
| 22 | this._e = e; |
| 23 | this._config = JSON.parse(JSON.stringify(config)); |
| 24 | this.attach(); |
| 25 | } |
| 26 | |
| 27 | get animate() { return this._config.animate; } |
| 28 | set animate(value) { this._config.animate = value; } |