| 8 | } |
| 9 | |
| 10 | export interface EmscriptenModule { |
| 11 | FS: EmscriptenFileSystem; |
| 12 | ccall: (funcName: string, returnType: string, argTypes: string[], args: any[]) => number; |
| 13 | onRuntimeInitialized: () => void; |
| 14 | } |
| 15 | |
| 16 | export interface ConversionResult { |
| 17 | fileName: string; |
nothing calls this directly
no outgoing calls
no test coverage detected