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