1// generated by diplomat-tool 2import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; 3 4 5 6export class Weekday { 7 8 9 static fromValue(value : Weekday | string) : Weekday; 10 11 get value() : string; 12 13 get ffiValue() : number; 14 15 static Monday : Weekday; 16 static Tuesday : Weekday; 17 static Wednesday : Weekday; 18 static Thursday : Weekday; 19 static Friday : Weekday; 20 static Saturday : Weekday; 21 static Sunday : Weekday; 22 23 constructor(value: Weekday | string ); 24}