mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
22 lines
451 B
Markdown
22 lines
451 B
Markdown
|
---
|
||
|
sidebar_label: Process.(constructor)
|
||
|
---
|
||
|
|
||
|
# Process.(constructor)
|
||
|
|
||
|
Constructs a new instance of the `Process` class
|
||
|
|
||
|
#### Signature:
|
||
|
|
||
|
```typescript
|
||
|
class Process {
|
||
|
constructor(opts: LaunchOptions);
|
||
|
}
|
||
|
```
|
||
|
|
||
|
## Parameters
|
||
|
|
||
|
| Parameter | Type | Description |
|
||
|
| --------- | -------------------------------------------- | ----------- |
|
||
|
| opts | [LaunchOptions](./browsers.launchoptions.md) | |
|