1// generated by diplomat-tool 2import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; 3 4 5/** See the [Rust documentation for `HangulSyllableType`](https://docs.rs/icu/latest/icu/properties/props/struct.HangulSyllableType.html) for more information. 6*/ 7 8 9export class HangulSyllableType { 10 11 12 static fromValue(value : HangulSyllableType | string) : HangulSyllableType; 13 14 get value() : string; 15 16 get ffiValue() : number; 17 18 static NotApplicable : HangulSyllableType; 19 static LeadingJamo : HangulSyllableType; 20 static VowelJamo : HangulSyllableType; 21 static TrailingJamo : HangulSyllableType; 22 static LeadingVowelSyllable : HangulSyllableType; 23 static LeadingVowelTrailingSyllable : HangulSyllableType; 24 25 static forChar(ch: codepoint): HangulSyllableType; 26 27 toIntegerValue(): number; 28 29 static fromIntegerValue(other: number): HangulSyllableType | null; 30 31 constructor(value: HangulSyllableType | string ); 32}