trisquel-icecat/icecat/intl/icu_capi/bindings/js/ICU4XDecomposed.d.ts
2025-10-06 02:35:48 -06:00

12 lines
457 B
TypeScript

import { char } from "./diplomat-runtime"
/**
* The outcome of non-recursive canonical decomposition of a character. `second` will be NUL when the decomposition expands to a single character (which may or may not be the original one)
* See the {@link https://docs.rs/icu/latest/icu/normalizer/properties/enum.Decomposed.html Rust documentation for `Decomposed`} for more information.
*/
export class ICU4XDecomposed {
first: char;
second: char;
}