2022-08-06 14:49:20 +00:00
|
|
|
---
|
|
|
|
sidebar_label: PuppeteerNodeLaunchOptions
|
|
|
|
---
|
|
|
|
|
|
|
|
# PuppeteerNodeLaunchOptions type
|
|
|
|
|
|
|
|
Utility type exposed to enable users to define options that can be passed to `puppeteer.launch` without having to list the set of all types.
|
|
|
|
|
2022-10-24 14:31:12 +00:00
|
|
|
#### Signature:
|
2022-08-06 14:49:20 +00:00
|
|
|
|
|
|
|
```typescript
|
2023-01-09 09:58:41 +00:00
|
|
|
export type PuppeteerNodeLaunchOptions = BrowserLaunchArgumentOptions &
|
2022-08-06 14:49:20 +00:00
|
|
|
LaunchOptions &
|
|
|
|
BrowserConnectOptions;
|
|
|
|
```
|
|
|
|
|
|
|
|
**References:** [BrowserLaunchArgumentOptions](./puppeteer.browserlaunchargumentoptions.md), [LaunchOptions](./puppeteer.launchoptions.md), [BrowserConnectOptions](./puppeteer.browserconnectoptions.md)
|