We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28d6b24 commit 20a898cCopy full SHA for 20a898c
packages/php-wasm/universal/src/lib/comlink-sync.ts
@@ -1,3 +1,6 @@
1
+// eslint-disable @typescript-eslint/no-unsafe-function-type
2
+// eslint-disable @typescript-eslint/no-misused-new
3
+// eslint-disable @typescript-eslint/no-empty-object-type
4
import type { MessagePort as NodeMessagePort } from 'worker_threads';
5
6
/**
@@ -280,7 +283,7 @@ export const enum WireValueType {
280
283
export interface RawWireValue {
281
284
id?: string;
282
285
type: WireValueType.RAW;
- value: {};
286
+ value: any;
287
}
288
289
export interface HandlerWireValue {
0 commit comments