e99af184ab
Given we have updated API extractor to the most recent version, we need to update the API goldens because the latest version uses alias exports to avoid collisions with default library globals (like `Event`). PR Close #42737
30 lines
702 B
Markdown
30 lines
702 B
Markdown
## API Report File for "@angular/localize_init"
|
|
|
|
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
|
|
```ts
|
|
|
|
// @public
|
|
const $localize_2: LocalizeFn;
|
|
|
|
export { $localize_2 as $localize }
|
|
|
|
// @public (undocumented)
|
|
export interface LocalizeFn {
|
|
// (undocumented)
|
|
(messageParts: TemplateStringsArray, ...expressions: readonly any[]): string;
|
|
locale?: string;
|
|
translate?: TranslateFn;
|
|
}
|
|
|
|
// @public (undocumented)
|
|
export interface TranslateFn {
|
|
// (undocumented)
|
|
(messageParts: TemplateStringsArray, expressions: readonly any[]): [TemplateStringsArray, readonly any[]];
|
|
}
|
|
|
|
|
|
// (No @packageDocumentation comment for this package)
|
|
|
|
```
|