16 lines
No EOL
302 B
TypeScript
16 lines
No EOL
302 B
TypeScript
|
|
/**
|
|
|
|
* 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',
|
|
} |