• 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/locale/enum.ParseError.html)
6*/
7
8
9export class LocaleParseError {
10
11
12    static fromValue(value : LocaleParseError | string) : LocaleParseError;
13
14    get value() : string;
15
16    get ffiValue() : number;
17
18    static Unknown : LocaleParseError;
19    static Language : LocaleParseError;
20    static Subtag : LocaleParseError;
21    static Extension : LocaleParseError;
22
23    constructor(value: LocaleParseError | string );
24}