16 lines
No EOL
317 B
TypeScript
16 lines
No EOL
317 B
TypeScript
|
|
/**
|
|
|
|
* See the {@link https://docs.rs/icu/latest/icu/collator/enum.AlternateHandling.html Rust documentation for `AlternateHandling`} for more information.
|
|
*/
|
|
export enum ICU4XCollatorAlternateHandling {
|
|
/**
|
|
*/
|
|
Auto = 'Auto',
|
|
/**
|
|
*/
|
|
NonIgnorable = 'NonIgnorable',
|
|
/**
|
|
*/
|
|
Shifted = 'Shifted',
|
|
} |