Merge pull request #32987 from ondrejkralik/patch-1

Update debugger.log function
This commit is contained in:
Andrew Casey
2019-02-19 17:33:50 -08:00
committed by GitHub

View File

@@ -38,7 +38,7 @@ declare namespace debug {
(formatter: any, ...args: any[]): void;
enabled: boolean;
log: (v: any) => string;
log: (...args: any[]) => any;
namespace: string;
extend: (namespace: string, delimiter?: string) => Debugger;
}