tor-browser

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

CanonicalCombiningClassMap.d.ts (1275B)


      1 // generated by diplomat-tool
      2 import type { DataError } from "./DataError"
      3 import type { DataProvider } from "./DataProvider"
      4 import type { pointer, codepoint } from "./diplomat-runtime.d.ts";
      5 
      6 
      7 /**
      8 * Lookup of the Canonical_Combining_Class Unicode property
      9 *
     10 * See the [Rust documentation for `CanonicalCombiningClassMap`](https://docs.rs/icu/latest/icu/normalizer/properties/struct.CanonicalCombiningClassMap.html) for more information.
     11 */
     12 
     13 
     14 export class CanonicalCombiningClassMap {
     15    get ffiValue(): pointer;
     16 
     17 
     18    /**
     19     * Construct a new CanonicalCombiningClassMap instance for NFC using a particular data source.
     20     *
     21     * See the [Rust documentation for `new`](https://docs.rs/icu/latest/icu/normalizer/properties/struct.CanonicalCombiningClassMap.html#method.new) for more information.
     22     */
     23    static createWithProvider(provider: DataProvider): CanonicalCombiningClassMap;
     24 
     25    /**
     26     * See the [Rust documentation for `get`](https://docs.rs/icu/latest/icu/normalizer/properties/struct.CanonicalCombiningClassMapBorrowed.html#method.get) for more information.
     27     *
     28     * Additional information: [1](https://docs.rs/icu/latest/icu/properties/props/struct.CanonicalCombiningClass.html)
     29     */
     30    get(ch: codepoint): number;
     31 
     32    constructor();
     33 }