WeekdaySetIterator.d.ts (491B)
1 // generated by diplomat-tool 2 import type { Weekday } from "./Weekday" 3 import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; 4 5 6 /** 7 * Documents which days of the week are considered to be a part of the weekend 8 * 9 * See the [Rust documentation for `WeekdaySetIterator`](https://docs.rs/icu/latest/icu/calendar/week/struct.WeekdaySetIterator.html) for more information. 10 */ 11 12 13 export class WeekdaySetIterator { 14 get ffiValue(): pointer; 15 16 17 next(): IteratorResult<Weekday>; 18 }