// generated by diplomat-tool import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; /** Documents which days of the week are considered to be a part of the weekend * *See the [Rust documentation for `weekend`](https://docs.rs/icu/latest/icu/calendar/week/struct.WeekCalculator.html#method.weekend) for more information. */ type WeekendContainsDay_Obj = { monday: boolean; tuesday: boolean; wednesday: boolean; thursday: boolean; friday: boolean; saturday: boolean; sunday: boolean; }; export class WeekendContainsDay { get monday() : boolean; set monday(value: boolean); get tuesday() : boolean; set tuesday(value: boolean); get wednesday() : boolean; set wednesday(value: boolean); get thursday() : boolean; set thursday(value: boolean); get friday() : boolean; set friday(value: boolean); get saturday() : boolean; set saturday(value: boolean); get sunday() : boolean; set sunday(value: boolean); constructor(structObj : WeekendContainsDay_Obj); }