()
| 48 | } |
| 49 | |
| 50 | installPlugin(): void { |
| 51 | const { uppy, ...options } = { |
| 52 | id: 'Dashboard', |
| 53 | ...this.props, |
| 54 | inline: true, |
| 55 | target: this.container, |
| 56 | } |
| 57 | uppy.use(DashboardPlugin<M, B>, options) |
| 58 | |
| 59 | this.plugin = uppy.getPlugin(options.id)! |
| 60 | } |
| 61 | |
| 62 | uninstallPlugin(props = this.props): void { |
| 63 | const { uppy } = props |
no test coverage detected