• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// generated by diplomat-tool
2import type { pointer, codepoint } from "./diplomat-runtime.d.ts";
3
4
5/** The outcome of non-recursive canonical decomposition of a character.
6*`second` will be NUL when the decomposition expands to a single character
7*(which may or may not be the original one)
8*
9*See the [Rust documentation for `Decomposed`](https://docs.rs/icu/latest/icu/normalizer/properties/enum.Decomposed.html) for more information.
10*/
11
12
13export class Decomposed {
14
15    get first() : codepoint;
16
17    get second() : codepoint;
18
19}