Skip to content

Commit 20a898c

Browse files
committed
lint
1 parent 28d6b24 commit 20a898c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/php-wasm/universal/src/lib/comlink-sync.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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
14
import type { MessagePort as NodeMessagePort } from 'worker_threads';
25

36
/**
@@ -280,7 +283,7 @@ export const enum WireValueType {
280283
export interface RawWireValue {
281284
id?: string;
282285
type: WireValueType.RAW;
283-
value: {};
286+
value: any;
284287
}
285288

286289
export interface HandlerWireValue {

0 commit comments

Comments
 (0)