File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -7,11 +7,16 @@ interface UnstableWebkit {
7
7
>
8
8
}
9
9
10
+ interface UnstableMockCall {
11
+ payload : import ( '../index.js' ) . RequestMessage ;
12
+ response ?: Record < string , any > ;
13
+ }
14
+
10
15
interface Window {
11
16
webkit : UnstableWebkit
12
17
__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 [ ] ,
15
20
mocks : {
16
21
outgoing : UnstableMockCall [ ] ,
17
22
}
@@ -21,8 +26,3 @@ interface Window {
21
26
declare let windowsInteropPostMessage : any
22
27
declare let windowsInteropAddEventListener : any
23
28
declare let windowsInteropRemoveEventListener : any
24
-
25
- interface UnstableMockCall {
26
- payload : import ( "../index.js" ) . RequestMessage ;
27
- response ?: Record < string , any > ;
28
- }
You can’t perform that action at this time.
0 commit comments