File tree Expand file tree Collapse file tree 4 files changed +9
-2
lines changed Expand file tree Collapse file tree 4 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -260,6 +260,9 @@ interface Function {
260
260
*/
261
261
bind(this: Function, thisArg: any, ...argArray: any[]): any;
262
262
263
+ /** Returns a string representation of a function. */
264
+ toString(): string;
265
+
263
266
prototype: any;
264
267
readonly length: number;
265
268
Original file line number Diff line number Diff line change @@ -260,6 +260,9 @@ interface Function {
260
260
*/
261
261
bind ( this : Function , thisArg : any , ...argArray : any [ ] ) : any ;
262
262
263
+ /** Returns a string representation of a function. */
264
+ toString ( ) : string ;
265
+
263
266
prototype : any ;
264
267
readonly length : number ;
265
268
Original file line number Diff line number Diff line change @@ -260,6 +260,9 @@ interface Function {
260
260
*/
261
261
bind(this: Function, thisArg: any, ...argArray: any[]): any;
262
262
263
+ /** Returns a string representation of a function. */
264
+ toString(): string;
265
+
263
266
prototype: any;
264
267
readonly length: number;
265
268
Original file line number Diff line number Diff line change @@ -67,7 +67,6 @@ var ts;
67
67
(function (ts) {
68
68
ts.timestamp = typeof performance !== "undefined" && performance.now ? function () { return performance.now(); } : Date.now ? Date.now : function () { return +(new Date()); };
69
69
})(ts || (ts = {}));
70
- var ts;
71
70
(function (ts) {
72
71
var performance;
73
72
(function (performance) {
@@ -7937,7 +7936,6 @@ var ts;
7937
7936
}
7938
7937
ts.isWatchSet = isWatchSet;
7939
7938
})(ts || (ts = {}));
7940
- var ts;
7941
7939
(function (ts) {
7942
7940
function getDefaultLibFileName(options) {
7943
7941
return options.target === 2 ? "lib.es6.d.ts" : "lib.d.ts";
You can’t perform that action at this time.
0 commit comments