1// generated by diplomat-tool 2import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; 3 4 5/** Additional information: [1](https://docs.rs/fixed_decimal/latest/fixed_decimal/enum.ParseError.html) 6*/ 7 8 9export class FixedDecimalParseError { 10 11 12 static fromValue(value : FixedDecimalParseError | string) : FixedDecimalParseError; 13 14 get value() : string; 15 16 get ffiValue() : number; 17 18 static Unknown : FixedDecimalParseError; 19 static Limit : FixedDecimalParseError; 20 static Syntax : FixedDecimalParseError; 21 22 constructor(value: FixedDecimalParseError | string ); 23}