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