blob: efd1abe7298d721a9b61a3461d3fc99c988939e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/**
* See the {@link https://docs.rs/icu/latest/icu/casemap/titlecase/enum.TrailingCase.html Rust documentation for `TrailingCase`} for more information.
*/
export enum ICU4XTrailingCase {
/**
*/
Lower = 'Lower',
/**
*/
Unchanged = 'Unchanged',
}
|