DecimalParseError.d.ts (552B)
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/fixed_decimal/latest/fixed_decimal/enum.ParseError.html) 7 */ 8 9 10 export class DecimalParseError { 11 12 static fromValue(value: DecimalParseError | string): DecimalParseError; 13 14 get value(): string; 15 16 get ffiValue(): number; 17 18 static Unknown : DecimalParseError; 19 static Limit : DecimalParseError; 20 static Syntax : DecimalParseError; 21 22 23 constructor(value: DecimalParseError | string ); 24 }