16 lines
No EOL
295 B
TypeScript
16 lines
No EOL
295 B
TypeScript
|
|
/**
|
|
|
|
* 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',
|
|
} |