Skip to content

Commit 339d2ee

Browse files
committed
Update LKG
1 parent 481d5fe commit 339d2ee

27 files changed

+50682
-3846
lines changed

lib/lib.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19394,9 +19394,9 @@ interface TextStreamReader extends TextStreamBase {
1939419394

1939519395
declare var WScript: {
1939619396
/**
19397-
* Outputs text to either a message box (under WScript.exe) or the command console window followed by
19398-
* a newline (under CScript.exe).
19399-
*/
19397+
* Outputs text to either a message box (under WScript.exe) or the command console window followed by
19398+
* a newline (under CScript.exe).
19399+
*/
1940019400
Echo(s: any): void;
1940119401

1940219402
/**

lib/lib.dom.iterable.d.ts

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -43,23 +43,23 @@ interface FormData {
4343

4444
interface NodeList {
4545
/**
46-
* Returns an array of key, value pairs for every entry in the list
47-
*/
46+
* Returns an array of key, value pairs for every entry in the list
47+
*/
4848
entries(): IterableIterator<[number, Node]>;
4949
/**
50-
* Performs the specified action for each node in an list.
51-
* @param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the list.
52-
* @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
53-
*/
50+
* Performs the specified action for each node in an list.
51+
* @param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the list.
52+
* @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
53+
*/
5454
forEach(callbackfn: (value: Node, index: number, listObj: NodeList) => void, thisArg?: any): void;
5555
/**
56-
* Returns an list of keys in the list
57-
*/
56+
* Returns an list of keys in the list
57+
*/
5858
keys(): IterableIterator<number>;
5959

6060
/**
61-
* Returns an list of values in the list
62-
*/
61+
* Returns an list of values in the list
62+
*/
6363
values(): IterableIterator<Node>;
6464

6565

@@ -69,23 +69,23 @@ interface NodeList {
6969
interface NodeListOf<TNode extends Node> {
7070

7171
/**
72-
* Returns an array of key, value pairs for every entry in the list
73-
*/
72+
* Returns an array of key, value pairs for every entry in the list
73+
*/
7474
entries(): IterableIterator<[number, TNode]>;
7575

7676
/**
77-
* Performs the specified action for each node in an list.
78-
* @param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the list.
79-
* @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
80-
*/
77+
* Performs the specified action for each node in an list.
78+
* @param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the list.
79+
* @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value.
80+
*/
8181
forEach(callbackfn: (value: TNode, index: number, listObj: NodeListOf<TNode>) => void, thisArg?: any): void;
8282
/**
83-
* Returns an list of keys in the list
84-
*/
83+
* Returns an list of keys in the list
84+
*/
8585
keys(): IterableIterator<number>;
8686
/**
87-
* Returns an list of values in the list
88-
*/
87+
* Returns an list of values in the list
88+
*/
8989
values(): IterableIterator<TNode>;
9090

9191
[Symbol.iterator](): IterableIterator<TNode>;

0 commit comments

Comments
 (0)