| // generated by diplomat-tool |
| import type { CalendarParseError } from "./CalendarParseError" |
| import type { IanaParser } from "./IanaParser" |
| import type { IsoDate } from "./IsoDate" |
| import type { Time } from "./Time" |
| import type { TimeZoneInfo } from "./TimeZoneInfo" |
| import type { UtcOffsetCalculator } from "./UtcOffsetCalculator" |
| import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; |
| |
| |
| /** An ICU4X ZonedDateTime object capable of containing a ISO-8601 date, time, and zone. |
| * |
| *See the [Rust documentation for `ZonedDateTime`](https://docs.rs/icu/latest/icu/time/struct.ZonedDateTime.html) for more information. |
| */ |
| |
| |
| export class ZonedIsoDateTime { |
| |
| get date() : IsoDate; |
| |
| get time() : Time; |
| |
| get zone() : TimeZoneInfo; |
| |
| |
| static fromString(v: string, ianaParser: IanaParser, offsetCalculator: UtcOffsetCalculator): ZonedIsoDateTime; |
| } |