puppeteer/docs/api/puppeteer.eventswithwildcard.md
2023-09-13 15:47:55 +02:00

15 lines
230 B
Markdown

---
sidebar_label: EventsWithWildcard
---
# EventsWithWildcard type
#### Signature:
```typescript
export type EventsWithWildcard<Events extends Record<EventType, unknown>> =
Events & {
'*': Events[keyof Events];
};
```