• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// generated by diplomat-tool
2import type { pointer, codepoint } from "./diplomat-runtime.d.ts";
3
4
5/** Priority mode for the ICU4X fallback algorithm.
6*
7*See the [Rust documentation for `LocaleFallbackPriority`](https://docs.rs/icu/latest/icu/locale/fallback/enum.LocaleFallbackPriority.html) for more information.
8*/
9
10
11export class LocaleFallbackPriority {
12
13
14    static fromValue(value : LocaleFallbackPriority | string) : LocaleFallbackPriority;
15
16    get value() : string;
17
18    get ffiValue() : number;
19
20    static Language : LocaleFallbackPriority;
21    static Region : LocaleFallbackPriority;
22
23    constructor(value: LocaleFallbackPriority | string );
24}