We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ea7bcb commit a8662ffCopy full SHA for a8662ff
README.md
@@ -307,6 +307,7 @@ API
307
* FunctionInfo#**name**: `string`
308
* FunctionInfo#**module**: `string | null` (if imported)
309
* FunctionInfo#**base**: `string | null` (if imported)
310
+ * FunctionInfo#**type**: `Type`
311
* FunctionInfo#**params**: `Type`
312
* FunctionInfo#**results**: `Type`
313
* FunctionInfo#**vars**: `Type`
index.d.ts
@@ -2200,6 +2200,7 @@ declare module binaryen {
2200
name: string;
2201
module: string | null;
2202
base: string | null;
2203
+ type: Type;
2204
params: Type;
2205
results: Type;
2206
vars: Type[];
0 commit comments