blob: f0e1bae74d553e7b40f942f8f5726fca6566373d (
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/locid_transform/enum.Direction.html Rust documentation for `Direction`} for more information.
*/
export enum ICU4XLocaleDirection {
/**
*/
LeftToRight = 'LeftToRight',
/**
*/
RightToLeft = 'RightToLeft',
/**
*/
Unknown = 'Unknown',
}
|