File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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";
You can’t perform that action at this time.
0 commit comments