22 lines
No EOL
339 B
TypeScript
22 lines
No EOL
339 B
TypeScript
|
|
/**
|
|
|
|
* See the {@link https://docs.rs/icu/latest/icu/displaynames/options/enum.Style.html Rust documentation for `Style`} for more information.
|
|
*/
|
|
export enum ICU4XDisplayNamesStyle {
|
|
/**
|
|
*/
|
|
Auto = 'Auto',
|
|
/**
|
|
*/
|
|
Narrow = 'Narrow',
|
|
/**
|
|
*/
|
|
Short = 'Short',
|
|
/**
|
|
*/
|
|
Long = 'Long',
|
|
/**
|
|
*/
|
|
Menu = 'Menu',
|
|
} |