forked from angular/angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgoog.d.ts
More file actions
27 lines (24 loc) · 660 Bytes
/
goog.d.ts
File metadata and controls
27 lines (24 loc) · 660 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/**
* @license
* Copyright Google LLC 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.dev/license
*/
/**
* 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;
export const LOCALE: string;
export const getMsg: (input: string, placeholders?: {[key: string]: string}) => string;
export const getLocale: () => string;
}
/**
* Use this flag to check for advanced compilation.
*/
declare const COMPILED: boolean;