28 lines
622 B
Markdown
28 lines
622 B
Markdown
|
---
|
||
|
sidebar_label: CommonEventEmitter.once
|
||
|
---
|
||
|
|
||
|
# CommonEventEmitter.once() method
|
||
|
|
||
|
#### Signature:
|
||
|
|
||
|
```typescript
|
||
|
interface CommonEventEmitter {
|
||
|
once<Key extends keyof Events>(
|
||
|
type: Key,
|
||
|
handler: Handler<Events[Key]>
|
||
|
): this;
|
||
|
}
|
||
|
```
|
||
|
|
||
|
## Parameters
|
||
|
|
||
|
| Parameter | Type | Description |
|
||
|
| --------- | ------------------------------------------------------ | ----------- |
|
||
|
| type | Key | |
|
||
|
| handler | [Handler](./puppeteer.handler.md)<Events\[Key\]> | |
|
||
|
|
||
|
**Returns:**
|
||
|
|
||
|
this
|