tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

LocaleFallbackIterator.d.ts (470B)


      1 // generated by diplomat-tool
      2 import type { Locale } from "./Locale"
      3 import type { pointer, codepoint } from "./diplomat-runtime.d.ts";
      4 
      5 
      6 /**
      7 * An iterator over the locale under fallback.
      8 *
      9 * See the [Rust documentation for `LocaleFallbackIterator`](https://docs.rs/icu/latest/icu/locale/fallback/struct.LocaleFallbackIterator.html) for more information.
     10 */
     11 
     12 
     13 export class LocaleFallbackIterator {
     14    get ffiValue(): pointer;
     15 
     16 
     17    next(): IteratorResult<Locale>;
     18 }