mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
chore: migrate away from Node's EventEmitter (#5979)
This commit is contained in:
27
new-docs/puppeteer.eventemitter.once.md
Normal file
27
new-docs/puppeteer.eventemitter.once.md
Normal file
@@ -0,0 +1,27 @@
|
||||
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
||||
|
||||
[Home](./index.md) > [puppeteer](./puppeteer.md) > [EventEmitter](./puppeteer.eventemitter.md) > [once](./puppeteer.eventemitter.once.md)
|
||||
|
||||
## EventEmitter.once() method
|
||||
|
||||
Like `on` but the listener will only be fired once and then it will be removed.
|
||||
|
||||
<b>Signature:</b>
|
||||
|
||||
```typescript
|
||||
once(event: EventType, handler: Handler): EventEmitter;
|
||||
```
|
||||
|
||||
## Parameters
|
||||
|
||||
| Parameter | Type | Description |
|
||||
| --- | --- | --- |
|
||||
| event | EventType | the event you'd like to listen to |
|
||||
| handler | Handler | the handler function to run when the event occurs |
|
||||
|
||||
<b>Returns:</b>
|
||||
|
||||
[EventEmitter](./puppeteer.eventemitter.md)
|
||||
|
||||
`this` to enable you to chain calls.
|
||||
|
||||
Reference in New Issue
Block a user