DateTimeLength.d.ts (557B)
1 // generated by diplomat-tool 2 import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; 3 4 5 /** 6 * See the [Rust documentation for `Length`](https://docs.rs/icu/latest/icu/datetime/options/enum.Length.html) for more information. 7 */ 8 9 10 export class DateTimeLength { 11 12 static fromValue(value: DateTimeLength | string): DateTimeLength; 13 14 get value(): string; 15 16 get ffiValue(): number; 17 18 static Long : DateTimeLength; 19 static Medium : DateTimeLength; 20 static Short : DateTimeLength; 21 22 23 constructor(value: DateTimeLength | string ); 24 }