tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

DecimalRoundingIncrement.d.ts (772B)


      1 // generated by diplomat-tool
      2 import type { pointer, codepoint } from "./diplomat-runtime.d.ts";
      3 
      4 
      5 /**
      6 * Increment used in a rounding operation.
      7 *
      8 * See the [Rust documentation for `RoundingIncrement`](https://docs.rs/fixed_decimal/latest/fixed_decimal/enum.RoundingIncrement.html) for more information.
      9 */
     10 
     11 
     12 export class DecimalRoundingIncrement {
     13 
     14    static fromValue(value: DecimalRoundingIncrement | string): DecimalRoundingIncrement;
     15 
     16    get value(): string;
     17 
     18    get ffiValue(): number;
     19 
     20    static MultiplesOf1 : DecimalRoundingIncrement;
     21    static MultiplesOf2 : DecimalRoundingIncrement;
     22    static MultiplesOf5 : DecimalRoundingIncrement;
     23    static MultiplesOf25 : DecimalRoundingIncrement;
     24 
     25 
     26    constructor(value: DecimalRoundingIncrement | string );
     27 }