File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
protocol-parser/generated Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -1396,9 +1396,6 @@ export namespace Network {
1396
1396
} ) ,
1397
1397
) ;
1398
1398
}
1399
- export namespace Network {
1400
- export const DataTypeSchema = z . literal ( 'response' ) ;
1401
- }
1402
1399
export namespace Network {
1403
1400
export const BytesValueSchema = z . lazy ( ( ) =>
1404
1401
z . union ( [ Network . StringValueSchema , Network . Base64ValueSchema ] ) ,
@@ -1456,6 +1453,9 @@ export namespace Network {
1456
1453
} ) ,
1457
1454
) ;
1458
1455
}
1456
+ export namespace Network {
1457
+ export const DataTypeSchema = z . literal ( 'response' ) ;
1458
+ }
1459
1459
export namespace Network {
1460
1460
export const FetchTimingInfoSchema = z . lazy ( ( ) =>
1461
1461
z . object ( {
Original file line number Diff line number Diff line change @@ -1140,11 +1140,6 @@ export namespace Network {
1140
1140
intercepts ?: [ Network . Intercept , ...Network . Intercept [ ] ] ;
1141
1141
} ;
1142
1142
}
1143
- export namespace Network {
1144
- export const enum DataType {
1145
- Response = 'response' ,
1146
- }
1147
- }
1148
1143
export namespace Network {
1149
1144
export type BytesValue = Network . StringValue | Network . Base64Value ;
1150
1145
}
@@ -1195,6 +1190,11 @@ export namespace Network {
1195
1190
value : Network . BytesValue ;
1196
1191
} ;
1197
1192
}
1193
+ export namespace Network {
1194
+ export const enum DataType {
1195
+ Response = 'response' ,
1196
+ }
1197
+ }
1198
1198
export namespace Network {
1199
1199
export type FetchTimingInfo = {
1200
1200
timeOrigin : number ;
You can’t perform that action at this time.
0 commit comments