| 19 | }; |
| 20 | |
| 21 | export interface RuntimeOptions { |
| 22 | scope: string; |
| 23 | loaderOptions?: LoaderOptions; |
| 24 | execCode?: ( |
| 25 | output: ModuleResource, |
| 26 | provider: ReturnType<Runtime['generateProvider']>, |
| 27 | ) => void; |
| 28 | } |
| 29 | |
| 30 | export class Runtime { |
| 31 | private modules = new WeakMap<MemoryModule, Module>(); |
nothing calls this directly
no outgoing calls
no test coverage detected