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