19 lines
No EOL
304 B
TypeScript
19 lines
No EOL
304 B
TypeScript
|
|
/**
|
|
|
|
* See the {@link https://docs.rs/icu/latest/icu/datetime/options/length/enum.Date.html Rust documentation for `Date`} for more information.
|
|
*/
|
|
export enum ICU4XDateLength {
|
|
/**
|
|
*/
|
|
Full = 'Full',
|
|
/**
|
|
*/
|
|
Long = 'Long',
|
|
/**
|
|
*/
|
|
Medium = 'Medium',
|
|
/**
|
|
*/
|
|
Short = 'Short',
|
|
} |