mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-05-19 10:41:56 -05:00
12 lines
256 B
TypeScript
12 lines
256 B
TypeScript
interface DOMTokenList {
|
|
[Symbol.iterator](): IterableIterator<string>;
|
|
}
|
|
|
|
interface NodeList {
|
|
[Symbol.iterator](): IterableIterator<Node>
|
|
}
|
|
|
|
interface NodeListOf<TNode extends Node> {
|
|
[Symbol.iterator](): IterableIterator<TNode>
|
|
}
|