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