tor-browser

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

CollatorCaseFirst.d.ts (604B)


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