blob: 2f1ff28a60aa862df78d279ee01a5bf85b914607 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/**
* 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',
}
|