blob: 58c1f79232686dde7667ddac4b53443bf091fa99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import { ICU4XLocaleFallbackPriority } from "./ICU4XLocaleFallbackPriority";
import { ICU4XLocaleFallbackSupplement } from "./ICU4XLocaleFallbackSupplement";
/**
* Collection of configurations for the ICU4X fallback algorithm.
* See the {@link https://docs.rs/icu/latest/icu/locid_transform/fallback/struct.LocaleFallbackConfig.html Rust documentation for `LocaleFallbackConfig`} for more information.
*/
export class ICU4XLocaleFallbackConfig {
priority: ICU4XLocaleFallbackPriority;
extension_key: string;
fallback_supplement: ICU4XLocaleFallbackSupplement;
}
|