LocaleParseError.d.ts (576B)
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/locale/enum.ParseError.html) 7 */ 8 9 10 export class LocaleParseError { 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 24 constructor(value: LocaleParseError | string ); 25 }