()
| 280 | } |
| 281 | |
| 282 | public reset(): void { |
| 283 | this.setState({ |
| 284 | data: [], |
| 285 | current: null, |
| 286 | toolbox: [], |
| 287 | }); |
| 288 | this.cleanOutput(); |
| 289 | } |
| 290 | |
| 291 | public onTabChange(callback: (key: UniqueId) => void) { |
| 292 | this.subscribe(PanelEvent.onTabChange, callback); |
nothing calls this directly
no test coverage detected