blob: 8fc00bb1b0894c6c35163ed675ce8a135bbf4575 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/**
* What additional data is required to load when performing fallback.
* See the {@link https://docs.rs/icu/latest/icu/locid_transform/fallback/enum.LocaleFallbackSupplement.html Rust documentation for `LocaleFallbackSupplement`} for more information.
*/
export enum ICU4XLocaleFallbackSupplement {
/**
*/
None = 'None',
/**
*/
Collation = 'Collation',
}
|