Type returns the type of item this export type expects
()
| 76 | |
| 77 | // Type returns the type of item this export type expects |
| 78 | func (ty *ExportType) Type() *ExternType { |
| 79 | ptr := C.wasm_exporttype_type(ty.ptr()) |
| 80 | return mkExternType(ptr, ty.owner()) |
| 81 | } |