DisplayNamesFallback.d.ts (577B)
1 // generated by diplomat-tool 2 import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; 3 4 5 /** 6 * See the [Rust documentation for `Fallback`](https://docs.rs/icu/latest/icu/experimental/displaynames/options/enum.Fallback.html) for more information. 7 */ 8 9 10 export class DisplayNamesFallback { 11 12 static fromValue(value: DisplayNamesFallback | string): DisplayNamesFallback; 13 14 get value(): string; 15 16 get ffiValue(): number; 17 18 static Code : DisplayNamesFallback; 19 static None : DisplayNamesFallback; 20 21 22 constructor(value: DisplayNamesFallback | string ); 23 }