UNPKG

@phensley/cldr-types

Version:

Types shared among packages in the @phensley/cldr library

17 lines (16 loc) 346 B
/** * @public */ export type PluralType = 'other' | 'zero' | 'one' | 'two' | 'few' | 'many'; /** * @public */ export type AltType = 'none' | 'short' | 'narrow' | 'variant' | 'stand-alone' | 'long' | 'menu'; /** * @public */ export type DayPeriodAltType = 'none' | 'casing'; /** * @public */ export type EraAltType = 'none' | 'sensitive';