blob: a95e7cbde82fa9c7e9da8cd6775135479b020391 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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;
}
|