1// generated by diplomat-tool 2import type { DataError } from "./DataError" 3import type { DataProvider } from "./DataProvider" 4import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; 5 6 7/** Lookup of the Canonical_Combining_Class Unicode property 8* 9*See the [Rust documentation for `CanonicalCombiningClassMap`](https://docs.rs/icu/latest/icu/normalizer/properties/struct.CanonicalCombiningClassMap.html) for more information. 10*/ 11 12 13export class CanonicalCombiningClassMap { 14 15 get ffiValue(): pointer; 16 17 static createWithProvider(provider: DataProvider): CanonicalCombiningClassMap; 18 19 get(ch: codepoint): number; 20 21 constructor(); 22}