This commit is contained in:
Alexander T
2019-06-14 12:18:27 +03:00
parent 713d6ec155
commit 627211b06b
9 changed files with 55 additions and 56 deletions

View File

@@ -1,13 +1,13 @@
declare namespace Intl {
interface PluralRulesOptions {
localeMatcher?: 'lookup' | 'best fit';
type?: 'cardinal' | 'ordinal';
localeMatcher?: "lookup" | "best fit";
type?: "cardinal" | "ordinal";
}
interface ResolvedPluralRulesOptions {
locale: string;
pluralCategories: string[];
type: 'cardinal' | 'ordinal';
type: "cardinal" | "ordinal";
minimumIntegerDigits: number;
minimumFractionDigits: number;
maximumFractionDigits: number;