chore: update dependencies (#9436)

Fixed: https://github.com/puppeteer/puppeteer/issues/9372
This commit is contained in:
jrandolf
2022-12-19 15:26:58 +01:00
committed by GitHub
parent c7a063a152
commit 3f52212fc8
30 changed files with 1681 additions and 1777 deletions

View File

@@ -7,7 +7,7 @@ sidebar_label: FlattenHandle
#### Signature:
```typescript
export declare type FlattenHandle<T> = T extends HandleOr<infer U> ? U : never;
export type FlattenHandle<T> = T extends HandleOr<infer U> ? U : never;
```
**References:** [HandleOr](./puppeteer.handleor.md)