mirror of
https://github.com/microsoft/playwright.git
synced 2025-06-26 21:40:17 +00:00
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…
x
Reference in New Issue
Block a user