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