// generated by diplomat-tool import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; /** * See the [Rust documentation for `Weekday`](https://docs.rs/icu/2.1.1/icu/calendar/types/enum.Weekday.html) for more information. */ export class Weekday { /** @internal */ static fromValue(value: Weekday | string): Weekday; get value(): string; /** @internal */ get ffiValue(): number; static Monday : Weekday; static Tuesday : Weekday; static Wednesday : Weekday; static Thursday : Weekday; static Friday : Weekday; static Saturday : Weekday; static Sunday : Weekday; constructor(value: Weekday | string ); }