(options: InteractionInitOptions)
| 25 | private combinedBoundsMask?: SVGRectElement; |
| 26 | |
| 27 | init(options: InteractionInitOptions) { |
| 28 | super.init(options); |
| 29 | const { emitter } = options; |
| 30 | emitter.on('selection:change', this.handleSelectionChanged); |
| 31 | emitter.on('selection:geometrychange', this.handleGeometryChanged); |
| 32 | emitter.on('history:change', this.handleHistoryChanged); |
| 33 | this.highlightSelection(this.interaction.getSelection()); |
| 34 | } |
| 35 | |
| 36 | destroy() { |
| 37 | this.clearMasks(); |
nothing calls this directly
no test coverage detected