Skip to content

Commit cdafc9d

Browse files
committed
Update LKG
1 parent 2cd4040 commit cdafc9d

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-2
lines changed

lib/lib.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,9 @@ interface Function {
260260
*/
261261
bind(this: Function, thisArg: any, ...argArray: any[]): any;
262262

263+
/** Returns a string representation of a function. */
264+
toString(): string;
265+
263266
prototype: any;
264267
readonly length: number;
265268

lib/lib.es5.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,9 @@ interface Function {
260260
*/
261261
bind(this: Function, thisArg: any, ...argArray: any[]): any;
262262

263+
/** Returns a string representation of a function. */
264+
toString(): string;
265+
263266
prototype: any;
264267
readonly length: number;
265268

lib/lib.es6.d.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -260,6 +260,9 @@ interface Function {
260260
*/
261261
bind(this: Function, thisArg: any, ...argArray: any[]): any;
262262

263+
/** Returns a string representation of a function. */
264+
toString(): string;
265+
263266
prototype: any;
264267
readonly length: number;
265268

lib/tsc.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ var ts;
6767
(function (ts) {
6868
ts.timestamp = typeof performance !== "undefined" && performance.now ? function () { return performance.now(); } : Date.now ? Date.now : function () { return +(new Date()); };
6969
})(ts || (ts = {}));
70-
var ts;
7170
(function (ts) {
7271
var performance;
7372
(function (performance) {
@@ -7937,7 +7936,6 @@ var ts;
79377936
}
79387937
ts.isWatchSet = isWatchSet;
79397938
})(ts || (ts = {}));
7940-
var ts;
79417939
(function (ts) {
79427940
function getDefaultLibFileName(options) {
79437941
return options.target === 2 ? "lib.es6.d.ts" : "lib.d.ts";

0 commit comments

Comments
 (0)