CalendarError.d.ts (635B)
1 // generated by diplomat-tool 2 import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; 3 4 5 /** 6 * Additional information: [1](https://docs.rs/icu/latest/icu/calendar/struct.RangeError.html), [2](https://docs.rs/icu/latest/icu/calendar/enum.DateError.html) 7 */ 8 9 10 export class CalendarError { 11 12 static fromValue(value: CalendarError | string): CalendarError; 13 14 get value(): string; 15 16 get ffiValue(): number; 17 18 static Unknown : CalendarError; 19 static OutOfRange : CalendarError; 20 static UnknownEra : CalendarError; 21 static UnknownMonthCode : CalendarError; 22 23 24 constructor(value: CalendarError | string ); 25 }