LocaleFallbackPriority.d.ts (659B)
1 // generated by diplomat-tool 2 import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; 3 4 5 /** 6 * Priority mode for the ICU4X fallback algorithm. 7 * 8 * See the [Rust documentation for `LocaleFallbackPriority`](https://docs.rs/icu/latest/icu/locale/fallback/enum.LocaleFallbackPriority.html) for more information. 9 */ 10 11 12 export class LocaleFallbackPriority { 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 24 constructor(value: LocaleFallbackPriority | string ); 25 }