Merge pull request #34451 from brandonros/patch-1

Update debug declaration to add destroy function
This commit is contained in:
Benjamin Lichtman
2019-04-11 17:01:55 -07:00
committed by GitHub

View File

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