2022-07-06 07:05:37 +00:00
|
|
|
---
|
|
|
|
sidebar_label: NodeFor
|
|
|
|
---
|
|
|
|
|
|
|
|
# NodeFor type
|
|
|
|
|
2022-10-24 07:07:05 +00:00
|
|
|
#### Signature:
|
2022-07-06 07:05:37 +00:00
|
|
|
|
|
|
|
```typescript
|
|
|
|
export declare type NodeFor<Selector extends string> =
|
|
|
|
Selector extends keyof HTMLElementTagNameMap
|
|
|
|
? HTMLElementTagNameMap[Selector]
|
|
|
|
: Selector extends keyof SVGElementTagNameMap
|
|
|
|
? SVGElementTagNameMap[Selector]
|
|
|
|
: Element;
|
|
|
|
```
|