| // generated by diplomat-tool |
| import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; |
| |
| |
| /** Increment used in a rounding operation. |
| * |
| *See the [Rust documentation for `RoundingIncrement`](https://docs.rs/fixed_decimal/latest/fixed_decimal/enum.RoundingIncrement.html) for more information. |
| */ |
| |
| |
| export class FixedDecimalRoundingIncrement { |
| |
| |
| static fromValue(value : FixedDecimalRoundingIncrement | string) : FixedDecimalRoundingIncrement; |
| |
| get value() : string; |
| |
| get ffiValue() : number; |
| |
| static MultiplesOf1 : FixedDecimalRoundingIncrement; |
| static MultiplesOf2 : FixedDecimalRoundingIncrement; |
| static MultiplesOf5 : FixedDecimalRoundingIncrement; |
| static MultiplesOf25 : FixedDecimalRoundingIncrement; |
| |
| constructor(value: FixedDecimalRoundingIncrement | string ); |
| } |