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/provider/struct.DataError.html), [2](https://docs.rs/icu/latest/icu/provider/enum.DataErrorKind.html) 6*/ 7 8 9export class DataError { 10 11 12 static fromValue(value : DataError | string) : DataError; 13 14 get value() : string; 15 16 get ffiValue() : number; 17 18 static Unknown : DataError; 19 static MarkerNotFound : DataError; 20 static IdentifierNotFound : DataError; 21 static InvalidRequest : DataError; 22 static InconsistentData : DataError; 23 static Downcast : DataError; 24 static Deserialize : DataError; 25 static Custom : DataError; 26 static Io : DataError; 27 28 constructor(value: DataError | string ); 29}