mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This aligns with how angular/components marks their hidden APIs. `@nodoc` has been broken since the switch to adev, this change should properly hide the APIs again. PR Close #61194
891 B
891 B
API Report File for "@angular/localize"
Do not edit this file. It is a report generated by API Extractor.
// @public
export function clearTranslations(): void;
// @public
export function loadTranslations(translations: Record<MessageId, TargetMessage>): void;
// @public
export type MessageId = string;
// @public
export type TargetMessage = string;
// @public
export const ɵ$localize: ɵLocalizeFn;
// @public
export interface ɵLocalizeFn {
// (undocumented)
(messageParts: TemplateStringsArray, ...expressions: readonly any[]): string;
locale?: string;
translate?: ɵTranslateFn;
}
// @public
export interface ɵTranslateFn {
// (undocumented)
(messageParts: TemplateStringsArray, expressions: readonly any[]): [TemplateStringsArray, readonly any[]];
}
// (No @packageDocumentation comment for this package)