• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// generated by diplomat-tool
2import type { CodePointSetBuilder } from "./CodePointSetBuilder"
3import type { DataError } from "./DataError"
4import type { DataProvider } from "./DataProvider"
5import type { pointer, codepoint } from "./diplomat-runtime.d.ts";
6
7
8/** See the [Rust documentation for `CaseMapCloser`](https://docs.rs/icu/latest/icu/casemap/struct.CaseMapCloser.html) for more information.
9*/
10
11
12export class CaseMapCloser {
13
14    get ffiValue(): pointer;
15
16    static createWithProvider(provider: DataProvider): CaseMapCloser;
17
18    addCaseClosureTo(c: codepoint, builder: CodePointSetBuilder): void;
19
20    addStringCaseClosureTo(s: string, builder: CodePointSetBuilder): boolean;
21
22    constructor();
23}