blob: c2e28962bdfcff04f3620bc823a7e1d974d63b89 [file] [log] [blame]
// 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);
/** Create `LocaleFallbackConfig` from an object that contains all of `LocaleFallbackConfig`s fields.
* Optional fields do not need to be included in the provided object.
*/
static fromFields(structObj : LocaleFallbackConfig_obj) : LocaleFallbackConfig;
constructor(structObj : LocaleFallbackConfig_obj);
}