11 lines
326 B
TypeScript
11 lines
326 B
TypeScript
import { u16 } from "./diplomat-runtime"
|
|
import { ICU4XWeekRelativeUnit } from "./ICU4XWeekRelativeUnit";
|
|
|
|
/**
|
|
|
|
* See the {@link https://docs.rs/icu/latest/icu/calendar/week/struct.WeekOf.html Rust documentation for `WeekOf`} for more information.
|
|
*/
|
|
export class ICU4XWeekOf {
|
|
week: u16;
|
|
unit: ICU4XWeekRelativeUnit;
|
|
}
|