tor-browser

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

CollatorStrength.d.ts (667B)


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