blob: f72b75cfecebc23663dd434068e44d6a4b7e59f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/**
* See the {@link https://docs.rs/icu/latest/icu/collator/enum.CaseFirst.html Rust documentation for `CaseFirst`} for more information.
*/
export enum ICU4XCollatorCaseFirst {
/**
*/
Auto = 'Auto',
/**
*/
Off = 'Off',
/**
*/
LowerFirst = 'LowerFirst',
/**
*/
UpperFirst = 'UpperFirst',
}
|