(url: string, config: Config)
| 22 | } |
| 23 | |
| 24 | async function loadAsUrl(url: string, config: Config): Promise<string> { |
| 25 | return URL.createObjectURL(await loadAsBlob(url, config)); |
| 26 | } |
| 27 | |
| 28 | async function loadAsBlob(key: string, config: Config) { |
| 29 | // load resource metadata |
no test coverage detected