blob: 8c391e8ebb3f47d1f6d4b64d9b5a0df8a1eb6cc3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/**
* See the {@link https://docs.rs/icu/latest/icu/displaynames/options/enum.LanguageDisplay.html Rust documentation for `LanguageDisplay`} for more information.
*/
export enum ICU4XLanguageDisplay {
/**
*/
Dialect = 'Dialect',
/**
*/
Standard = 'Standard',
}
|