2017-09-26 22:41:08 -04:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Typings for google closure.
|
|
|
|
*/
|
|
|
|
declare namespace goog {
|
2017-09-29 12:07:14 -04:00
|
|
|
/**
|
|
|
|
* Note: Don't use this to check for advanced compilation,
|
|
|
|
* as it is sometimes true.
|
|
|
|
*/
|
2017-09-26 22:41:08 -04:00
|
|
|
export const DEBUG: boolean;
|
2018-12-03 10:34:25 -05:00
|
|
|
export const getMsg: (input: string, placeholders?: {[key: string]: string}) => string;
|
2017-09-26 22:41:08 -04:00
|
|
|
}
|
2017-09-29 12:07:14 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Use this flag to check for advanced compilation.
|
|
|
|
*/
|
|
|
|
declare const COMPILED: boolean;
|