tor-browser

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

TimeZoneAndCanonicalIterator.d.ts (471B)


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