tor-browser

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

ListLength.d.ts (533B)


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