feat(types): export ConnectOptions (#3147)
This commit is contained in:
parent
d516f81eeb
commit
c0b9cecc65
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"BrowserTypeLaunchOptions": "LaunchOptions",
|
||||
"BrowserTypeConnectOptions": "ConnectOptions",
|
||||
"BrowserContextCookies": "Cookie",
|
||||
"BrowserNewContextOptions": "BrowserContextOptions",
|
||||
"BrowserNewContextOptionsViewport": "ViewportSize",
|
||||
|
|
|
|||
|
|
@ -768,3 +768,14 @@ playwright.chromium.launch().then(async browser => {
|
|||
.removeListener('close', listener)
|
||||
.off('close', listener);
|
||||
});
|
||||
|
||||
// exported types
|
||||
import {
|
||||
LaunchOptions,
|
||||
ConnectOptions,
|
||||
Cookie,
|
||||
BrowserContextOptions,
|
||||
ViewportSize,
|
||||
Geolocation,
|
||||
HTTPCredentials,
|
||||
} from '../../../';
|
||||
|
|
|
|||
Loading…
Reference in a new issue