mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-12-12 11:50:54 -06:00
Update LKG
This commit is contained in:
parent
2cd404038e
commit
cdafc9dca1
3
lib/lib.d.ts
vendored
3
lib/lib.d.ts
vendored
@ -260,6 +260,9 @@ interface Function {
|
||||
*/
|
||||
bind(this: Function, thisArg: any, ...argArray: any[]): any;
|
||||
|
||||
/** Returns a string representation of a function. */
|
||||
toString(): string;
|
||||
|
||||
prototype: any;
|
||||
readonly length: number;
|
||||
|
||||
|
||||
3
lib/lib.es5.d.ts
vendored
3
lib/lib.es5.d.ts
vendored
@ -260,6 +260,9 @@ interface Function {
|
||||
*/
|
||||
bind(this: Function, thisArg: any, ...argArray: any[]): any;
|
||||
|
||||
/** Returns a string representation of a function. */
|
||||
toString(): string;
|
||||
|
||||
prototype: any;
|
||||
readonly length: number;
|
||||
|
||||
|
||||
3
lib/lib.es6.d.ts
vendored
3
lib/lib.es6.d.ts
vendored
@ -260,6 +260,9 @@ interface Function {
|
||||
*/
|
||||
bind(this: Function, thisArg: any, ...argArray: any[]): any;
|
||||
|
||||
/** Returns a string representation of a function. */
|
||||
toString(): string;
|
||||
|
||||
prototype: any;
|
||||
readonly length: number;
|
||||
|
||||
|
||||
@ -67,7 +67,6 @@ var ts;
|
||||
(function (ts) {
|
||||
ts.timestamp = typeof performance !== "undefined" && performance.now ? function () { return performance.now(); } : Date.now ? Date.now : function () { return +(new Date()); };
|
||||
})(ts || (ts = {}));
|
||||
var ts;
|
||||
(function (ts) {
|
||||
var performance;
|
||||
(function (performance) {
|
||||
@ -7937,7 +7936,6 @@ var ts;
|
||||
}
|
||||
ts.isWatchSet = isWatchSet;
|
||||
})(ts || (ts = {}));
|
||||
var ts;
|
||||
(function (ts) {
|
||||
function getDefaultLibFileName(options) {
|
||||
return options.target === 2 ? "lib.es6.d.ts" : "lib.d.ts";
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user