refactor: move locators to separate files (#10591)

This commit is contained in:
jrandolf
2023-07-20 15:06:42 +02:00
committed by GitHub
parent 4a3b8b2d9e
commit 0715ad8281
12 changed files with 527 additions and 469 deletions

View File

@@ -0,0 +1,13 @@
---
sidebar_label: UnionLocatorOf
---
# UnionLocatorOf type
#### Signature:
```typescript
export type UnionLocatorOf<T> = T extends Array<Locator<infer S>> ? S : never;
```
**References:** [Locator](./puppeteer.locator.md)