• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// generated by diplomat-tool
2import type { pointer, codepoint } from "./diplomat-runtime.d.ts";
3
4
5/** See the [Rust documentation for `JoiningType`](https://docs.rs/icu/latest/icu/properties/props/struct.JoiningType.html) for more information.
6*/
7
8
9export class JoiningType {
10
11
12    static fromValue(value : JoiningType | string) : JoiningType;
13
14    get value() : string;
15
16    get ffiValue() : number;
17
18    static NonJoining : JoiningType;
19    static JoinCausing : JoiningType;
20    static DualJoining : JoiningType;
21    static LeftJoining : JoiningType;
22    static RightJoining : JoiningType;
23    static Transparent : JoiningType;
24
25    static forChar(ch: codepoint): JoiningType;
26
27    longName(): string | null;
28
29    shortName(): string | null;
30
31    toIntegerValue(): number;
32
33    static fromIntegerValue(other: number): JoiningType | null;
34
35    constructor(value: JoiningType | string );
36}