// generated by diplomat-tool import type { LocaleFallbackPriority } from "./LocaleFallbackPriority" import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; /** Collection of configurations for the ICU4X fallback algorithm. * *See the [Rust documentation for `LocaleFallbackConfig`](https://docs.rs/icu/latest/icu/locale/fallback/struct.LocaleFallbackConfig.html) for more information. */ type LocaleFallbackConfig_Obj = { priority: LocaleFallbackPriority; }; export class LocaleFallbackConfig { get priority() : LocaleFallbackPriority; set priority(value: LocaleFallbackPriority); constructor(structObj : LocaleFallbackConfig_Obj); }