| 10 | * Information about an exported WASM symbol generated by wasm2c. |
| 11 | */ |
| 12 | export interface GeneratedSymbol<T extends GeneratedEntity = GeneratedEntity> { |
| 13 | module: W2CModuleBase; |
| 14 | localName: string; |
| 15 | mangledLocalName: string; |
| 16 | functionSymbolAccessorName: string; |
| 17 | target: T; |
| 18 | } |
| 19 | |
| 20 | /** |
| 21 | * Information about a generated function |
nothing calls this directly
no outgoing calls
no test coverage detected