tor-browser

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

DisplayNamesStyle.d.ts (630B)


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