Skip to content

Commit 567ec7b

Browse files
author
Shane Osbourne
committed
lint
1 parent 0b697bd commit 567ec7b

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

packages/messaging/lib/messaging.types.d.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,16 @@ interface UnstableWebkit {
77
>
88
}
99

10+
interface UnstableMockCall {
11+
payload: import('../index.js').RequestMessage;
12+
response?: Record<string, any>;
13+
}
14+
1015
interface Window {
1116
webkit: UnstableWebkit
1217
__playwright_01: {
13-
mockResponses: Record<string, import("../index.js").MessageResponse>,
14-
subscriptionEvents: import("../index.js").SubscriptionEvent[],
18+
mockResponses: Record<string, import('../index.js').MessageResponse>,
19+
subscriptionEvents: import('../index.js').SubscriptionEvent[],
1520
mocks: {
1621
outgoing: UnstableMockCall[],
1722
}
@@ -21,8 +26,3 @@ interface Window {
2126
declare let windowsInteropPostMessage: any
2227
declare let windowsInteropAddEventListener: any
2328
declare let windowsInteropRemoveEventListener: any
24-
25-
interface UnstableMockCall {
26-
payload: import("../index.js").RequestMessage;
27-
response?: Record<string, any>;
28-
}

0 commit comments

Comments
 (0)