• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// generated by diplomat-tool
2import type { pointer, codepoint } from "./diplomat-runtime.d.ts";
3
4
5
6export class BidiDirection {
7
8
9    static fromValue(value : BidiDirection | string) : BidiDirection;
10
11    get value() : string;
12
13    get ffiValue() : number;
14
15    static Ltr : BidiDirection;
16    static Rtl : BidiDirection;
17    static Mixed : BidiDirection;
18
19    constructor(value: BidiDirection | string );
20}