mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
15 lines
230 B
Markdown
15 lines
230 B
Markdown
|
---
|
||
|
sidebar_label: EventsWithWildcard
|
||
|
---
|
||
|
|
||
|
# EventsWithWildcard type
|
||
|
|
||
|
#### Signature:
|
||
|
|
||
|
```typescript
|
||
|
export type EventsWithWildcard<Events extends Record<EventType, unknown>> =
|
||
|
Events & {
|
||
|
'*': Events[keyof Events];
|
||
|
};
|
||
|
```
|