This commit is contained in:
Mohamed Hegazy 2016-10-13 17:29:03 -07:00
Родитель 2cd404038e
Коммит cdafc9dca1
4 изменённых файлов: 9 добавлений и 2 удалений

3
lib/lib.d.ts поставляемый
Просмотреть файл

@ -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 поставляемый
Просмотреть файл

@ -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 поставляемый
Просмотреть файл

@ -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";