| 39 | /** Compiled C++ binary type and path. */ |
| 40 | |
| 41 | export interface FindModuleSpec { |
| 42 | type: 'node' | 'emcc'; |
| 43 | ext: string; |
| 44 | name: string; |
| 45 | path?: string; |
| 46 | } |
| 47 | |
| 48 | export interface ModuleSpec extends FindModuleSpec { |
| 49 | path: string; |
nothing calls this directly
no outgoing calls
no test coverage detected