2017-09-26 19:41:08 -07: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 09:07:14 -07:00
|
|
|
/**
|
|
|
|
* Note: Don't use this to check for advanced compilation,
|
|
|
|
* as it is sometimes true.
|
|
|
|
*/
|
2017-09-26 19:41:08 -07:00
|
|
|
export const DEBUG: boolean;
|
2019-07-11 14:54:49 -07:00
|
|
|
export const LOCALE: string;
|
2018-12-03 16:34:25 +01:00
|
|
|
export const getMsg: (input: string, placeholders?: {[key: string]: string}) => string;
|
2017-09-26 19:41:08 -07:00
|
|
|
}
|
2017-09-29 09:07:14 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Use this flag to check for advanced compilation.
|
|
|
|
*/
|
|
|
|
declare const COMPILED: boolean;
|