| 6 | // Options object for modularized Emscripten files. Shoe-horned by @surma. |
| 7 | // FIXME: This an incomplete definition! |
| 8 | interface ModuleOpts { |
| 9 | noInitialRun?: boolean; |
| 10 | locateFile?: (url: string) => string; |
| 11 | onRuntimeInitialized?: () => void; |
| 12 | } |
| 13 | |
| 14 | interface Module { |
| 15 | print(str: string): void; |
nothing calls this directly
no outgoing calls
no test coverage detected