blob: 2605bbc45001116418836dc7938f1c54f9db43a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/**
* See the {@link https://docs.rs/icu/latest/icu/collator/enum.MaxVariable.html Rust documentation for `MaxVariable`} for more information.
*/
export enum ICU4XCollatorMaxVariable {
/**
*/
Auto = 'Auto',
/**
*/
Space = 'Space',
/**
*/
Punctuation = 'Punctuation',
/**
*/
Symbol = 'Symbol',
/**
*/
Currency = 'Currency',
}
|