| // generated by diplomat-tool |
| import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; |
| |
| |
| /** See the [Rust documentation for `Direction`](https://docs.rs/icu/latest/icu/locale/enum.Direction.html) for more information. |
| */ |
| |
| |
| export class LocaleDirection { |
| |
| |
| static fromValue(value : LocaleDirection | string) : LocaleDirection; |
| |
| get value() : string; |
| |
| get ffiValue() : number; |
| |
| static LeftToRight : LocaleDirection; |
| static RightToLeft : LocaleDirection; |
| static Unknown : LocaleDirection; |
| |
| constructor(value: LocaleDirection | string ); |
| } |