25 lines
No EOL
401 B
TypeScript
25 lines
No EOL
401 B
TypeScript
|
|
/**
|
|
|
|
* See the {@link https://docs.rs/icu/latest/icu/collator/enum.Strength.html Rust documentation for `Strength`} for more information.
|
|
*/
|
|
export enum ICU4XCollatorStrength {
|
|
/**
|
|
*/
|
|
Auto = 'Auto',
|
|
/**
|
|
*/
|
|
Primary = 'Primary',
|
|
/**
|
|
*/
|
|
Secondary = 'Secondary',
|
|
/**
|
|
*/
|
|
Tertiary = 'Tertiary',
|
|
/**
|
|
*/
|
|
Quaternary = 'Quaternary',
|
|
/**
|
|
*/
|
|
Identical = 'Identical',
|
|
} |