16 lines
No EOL
310 B
TypeScript
16 lines
No EOL
310 B
TypeScript
|
|
/**
|
|
|
|
* See the {@link https://docs.rs/icu/latest/icu/locid_transform/enum.Direction.html Rust documentation for `Direction`} for more information.
|
|
*/
|
|
export enum ICU4XLocaleDirection {
|
|
/**
|
|
*/
|
|
LeftToRight = 'LeftToRight',
|
|
/**
|
|
*/
|
|
RightToLeft = 'RightToLeft',
|
|
/**
|
|
*/
|
|
Unknown = 'Unknown',
|
|
} |