| // generated by diplomat-tool |
| import type { DataError } from "./DataError" |
| import type { DataProvider } from "./DataProvider" |
| import type { Decomposed } from "./Decomposed" |
| import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; |
| |
| |
| /** The raw (non-recursive) canonical decomposition operation. |
| * |
| *Callers should generally use DecomposingNormalizer unless they specifically need raw composition operations |
| * |
| *See the [Rust documentation for `CanonicalDecomposition`](https://docs.rs/icu/latest/icu/normalizer/properties/struct.CanonicalDecomposition.html) for more information. |
| */ |
| |
| |
| export class CanonicalDecomposition { |
| |
| get ffiValue(): pointer; |
| |
| static createWithProvider(provider: DataProvider): CanonicalDecomposition; |
| |
| decompose(c: codepoint): Decomposed; |
| |
| constructor(); |
| } |