• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// generated by diplomat-tool
2import type { pointer, codepoint } from "./diplomat-runtime.d.ts";
3
4
5/** The sign of a FixedDecimal, as shown in formatting.
6*
7*See the [Rust documentation for `Sign`](https://docs.rs/fixed_decimal/latest/fixed_decimal/enum.Sign.html) for more information.
8*/
9
10
11export class FixedDecimalSign {
12
13
14    static fromValue(value : FixedDecimalSign | string) : FixedDecimalSign;
15
16    get value() : string;
17
18    get ffiValue() : number;
19
20    static None : FixedDecimalSign;
21    static Negative : FixedDecimalSign;
22    static Positive : FixedDecimalSign;
23
24    constructor(value: FixedDecimalSign | string );
25}