• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// generated by diplomat-tool
2import type { pointer, codepoint } from "./diplomat-runtime.d.ts";
3
4
5/** Additional information: [1](https://docs.rs/icu/latest/icu/calendar/enum.ParseError.html), [2](https://docs.rs/icu/latest/icu/time/enum.ParseError.html)
6*/
7
8
9export class CalendarParseError {
10
11
12    static fromValue(value : CalendarParseError | string) : CalendarParseError;
13
14    get value() : string;
15
16    get ffiValue() : number;
17
18    static Unknown : CalendarParseError;
19    static InvalidSyntax : CalendarParseError;
20    static OutOfRange : CalendarParseError;
21    static MissingFields : CalendarParseError;
22    static UnknownCalendar : CalendarParseError;
23
24    constructor(value: CalendarParseError | string );
25}