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