fix(compiler): add typings for `COMPILED`.

Note: This commit has to be synced into G3 again.
This commit is contained in:
Tobias Bosch 2017-09-29 09:07:14 -07:00 committed by Alex Rickabaugh
parent db74f44a97
commit 0038712474
1 changed files with 9 additions and 0 deletions

9
packages/goog.d.ts vendored
View File

@ -11,5 +11,14 @@
* Typings for google closure.
*/
declare namespace goog {
/**
* Note: Don't use this to check for advanced compilation,
* as it is sometimes true.
*/
export const DEBUG: boolean;
}
/**
* Use this flag to check for advanced compilation.
*/
declare const COMPILED: boolean;