blob: 5614ef2deccf140675737e079d6dee5cef9927da [file] [log] [blame]
// generated by diplomat-tool
import type { pointer, codepoint } from "./diplomat-runtime.d.ts";
/** The sign of a FixedDecimal, as shown in formatting.
*
*See the [Rust documentation for `Sign`](https://docs.rs/fixed_decimal/latest/fixed_decimal/enum.Sign.html) for more information.
*/
export class FixedDecimalSign {
static fromValue(value : FixedDecimalSign | string) : FixedDecimalSign;
get value() : string;
get ffiValue() : number;
static None : FixedDecimalSign;
static Negative : FixedDecimalSign;
static Positive : FixedDecimalSign;
constructor(value: FixedDecimalSign | string );
}