ParseOptions interface
Options for the parser
Signature:
export interface ParseOptions
Properties
Property | Type | Description |
---|---|---|
cardinal | PluralCategory[] | Array of valid plural categories for the current locale, used to validate plural keys.If undefined, the full set of valid PluralCategory keys is used. To disable this check, pass in an empty array. |
ordinal | PluralCategory[] | Array of valid plural categories for the current locale, used to validate selectordinal keys.If undefined, the full set of valid PluralCategory keys is used. To disable this check, pass in an empty array. |
strict | boolean | By default, the parsing applies a few relaxations to the ICU MessageFormat spec. Setting strict: true will disable these relaxations. |