@@ -1612,7 +1612,6 @@ export interface BrowserContextChannel extends BrowserContextEventTarget, EventT
16121612 setWebSocketInterceptionPatterns ( params : BrowserContextSetWebSocketInterceptionPatternsParams , progress ?: Progress ) : Promise < BrowserContextSetWebSocketInterceptionPatternsResult > ;
16131613 setOffline ( params : BrowserContextSetOfflineParams , progress ?: Progress ) : Promise < BrowserContextSetOfflineResult > ;
16141614 storageState ( params : BrowserContextStorageStateParams , progress ?: Progress ) : Promise < BrowserContextStorageStateResult > ;
1615- setStorageState ( params : BrowserContextSetStorageStateParams , progress ?: Progress ) : Promise < BrowserContextSetStorageStateResult > ;
16161615 pause ( params ?: BrowserContextPauseParams , progress ?: Progress ) : Promise < BrowserContextPauseResult > ;
16171616 enableRecorder ( params : BrowserContextEnableRecorderParams , progress ?: Progress ) : Promise < BrowserContextEnableRecorderResult > ;
16181617 disableRecorder ( params ?: BrowserContextDisableRecorderParams , progress ?: Progress ) : Promise < BrowserContextDisableRecorderResult > ;
@@ -1863,16 +1862,6 @@ export type BrowserContextStorageStateResult = {
18631862 cookies : NetworkCookie [ ] ,
18641863 origins : OriginStorage [ ] ,
18651864} ;
1866- export type BrowserContextSetStorageStateParams = {
1867- storageState : {
1868- cookies ?: SetNetworkCookie [ ] ,
1869- origins ?: SetOriginStorage [ ] ,
1870- } ,
1871- } ;
1872- export type BrowserContextSetStorageStateOptions = {
1873-
1874- } ;
1875- export type BrowserContextSetStorageStateResult = void ;
18761865export type BrowserContextPauseParams = { } ;
18771866export type BrowserContextPauseOptions = { } ;
18781867export type BrowserContextPauseResult = void ;
0 commit comments