change NodeList to NodeListOf in NodeListOf.forEach

This commit is contained in:
cedvdb 2017-03-15 03:10:40 +01:00
parent d9cab83314
commit f20c59a7d2

View file

@ -31,7 +31,7 @@ interface NodeListOf<TNode extends Node> {
*/
entries(): IterableIterator<TNode>;
forEach(callbackfn: (value: TNode, index: number, listObj: NodeList) => void, thisArg?: any): void;
forEach(callbackfn: (value: TNode, index: number, listObj: NodeListOf<TNode>) => void, thisArg?: any): void;
/**
* Returns an list of keys in the list
*/