• 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/datetime/enum.DateTimeWriteError.html)
6*/
7
8
9export class DateTimeFormatError {
10
11
12    static fromValue(value : DateTimeFormatError | string) : DateTimeFormatError;
13
14    get value() : string;
15
16    get ffiValue() : number;
17
18    static Unknown : DateTimeFormatError;
19    static MissingInputField : DateTimeFormatError;
20    static ZoneInfoMissingFields : DateTimeFormatError;
21    static InvalidEra : DateTimeFormatError;
22    static InvalidMonthCode : DateTimeFormatError;
23    static InvalidCyclicYear : DateTimeFormatError;
24    static NamesNotLoaded : DateTimeFormatError;
25    static DecimalFormatterNotLoaded : DateTimeFormatError;
26    static UnsupportedField : DateTimeFormatError;
27
28    constructor(value: DateTimeFormatError | string );
29}