| 17 | } |
| 18 | |
| 19 | export interface IModule { |
| 20 | env: IEnvironment; |
| 21 | memory: IMemory; |
| 22 | exports: { [key: string]: Function }; |
| 23 | } |
| 24 | |
| 25 | type LoadOptions = { |
| 26 | imports: { [key: string]: any }, |
nothing calls this directly
no outgoing calls
no test coverage detected