blob: b170cdb94b6d681012855b1f87552c0ad4de7180 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/**
* See the {@link https://docs.rs/icu/latest/icu/casemap/titlecase/enum.LeadingAdjustment.html Rust documentation for `LeadingAdjustment`} for more information.
*/
export enum ICU4XLeadingAdjustment {
/**
*/
Auto = 'Auto',
/**
*/
None = 'None',
/**
*/
ToCased = 'ToCased',
}
|