mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
f8de7b1273
This PR removes the manual vendoring process. Third party code can now be updated using the typical NPM pipeline with types/code bundling done through Rollup.
12 lines
135 B
Markdown
12 lines
135 B
Markdown
---
|
|
sidebar_label: Handler
|
|
---
|
|
|
|
# Handler type
|
|
|
|
**Signature:**
|
|
|
|
```typescript
|
|
declare type Handler<T = any> = (event?: T) => void;
|
|
```
|