14 lines
227 B
Markdown
14 lines
227 B
Markdown
---
|
|
sidebar_label: UnionLocatorOf
|
|
---
|
|
|
|
# UnionLocatorOf type
|
|
|
|
#### Signature:
|
|
|
|
```typescript
|
|
export type UnionLocatorOf<T> = T extends Array<Locator<infer S>> ? S : never;
|
|
```
|
|
|
|
**References:** [Locator](./puppeteer.locator.md)
|