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