feat(common): export NgLocaleLocalization (#13367)

Closes #11921
This commit is contained in:
Dzmitry Shylovich
2016-12-12 22:16:12 +03:00
committed by Victor Berchet
parent 8a8c53250e
commit 56dce0e26d
3 changed files with 11 additions and 4 deletions

View File

@ -135,6 +135,13 @@ export declare class NgIf {
constructor(_viewContainer: ViewContainerRef, templateRef: TemplateRef<NgIfContext>);
}
/** @experimental */
export declare class NgLocaleLocalization extends NgLocalization {
protected locale: string;
constructor(locale: string);
getPluralCategory(value: any): string;
}
/** @experimental */
export declare abstract class NgLocalization {
abstract getPluralCategory(value: any): string;