Skip to content

Commit cd33c02

Browse files
committed
fix: remove duplicate paramBindings field introduced by merge
1 parent df3c251 commit cd33c02

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/domain/wasm-worker-protocol.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export interface SerializedExtractorOutput {
6565
receiver?: string;
6666
}>;
6767
fnRefBindings?: import('../types.js').FnRefBinding[];
68-
paramBindings?: import('../types.js').ParamBinding[];
68+
paramBindings?: ParamBinding[];
6969
arrayElemBindings?: import('../types.js').ArrayElemBinding[];
7070
spreadArgBindings?: import('../types.js').SpreadArgBinding[];
7171
forOfBindings?: import('../types.js').ForOfBinding[];
@@ -75,7 +75,6 @@ export interface SerializedExtractorOutput {
7575
newExpressions?: readonly string[];
7676
returnTypeMap?: Array<[string, TypeMapEntry]>;
7777
callAssignments?: CallAssignment[];
78-
paramBindings?: ParamBinding[];
7978
}
8079

8180
export interface WorkerParseResponseOk {

0 commit comments

Comments
 (0)