()
| 13 | ) {} |
| 14 | // eslint-disable-next-line @typescript-eslint/no-explicit-any |
| 15 | public getComponent(): Promise<any> { |
| 16 | if (!this.cachedPromise) { |
| 17 | this.cachedPromise = this.importer(); |
| 18 | } |
| 19 | return this.cachedPromise; |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | // Hardcode mimeType here so we can do a quick lookup without loading all of the |
no outgoing calls
no test coverage detected