blob: 60a12eddb5f618408635c2dbc6bdae78235baa9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/**
* See the {@link https://docs.rs/icu/latest/icu/calendar/week/enum.RelativeUnit.html Rust documentation for `RelativeUnit`} for more information.
*/
export enum ICU4XWeekRelativeUnit {
/**
*/
Previous = 'Previous',
/**
*/
Current = 'Current',
/**
*/
Next = 'Next',
}
|