tor-browser

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

CollatorNumericOrdering.d.ts (611B)


      1 // generated by diplomat-tool
      2 import type { pointer, codepoint } from "./diplomat-runtime.d.ts";
      3 
      4 
      5 /**
      6 * See the [Rust documentation for `CollationNumericOrdering`](https://docs.rs/icu/latest/icu/collator/preferences/enum.CollationNumericOrdering.html) for more information.
      7 */
      8 
      9 
     10 export class CollatorNumericOrdering {
     11 
     12    static fromValue(value: CollatorNumericOrdering | string): CollatorNumericOrdering;
     13 
     14    get value(): string;
     15 
     16    get ffiValue(): number;
     17 
     18    static Off : CollatorNumericOrdering;
     19    static On : CollatorNumericOrdering;
     20 
     21 
     22    constructor(value: CollatorNumericOrdering | string );
     23 }