// generated by diplomat-tool import type { Calendar } from "./Calendar" import type { Date } from "./Date" import type { IanaParser } from "./IanaParser" import type { Rfc9557ParseError } from "./Rfc9557ParseError" import type { Time } from "./Time" import type { TimeZoneInfo } from "./TimeZoneInfo" import type { VariantOffsetsCalculator } from "./VariantOffsetsCalculator" import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; /** * An ICU4X DateTime object capable of containing a date, time, and zone for any calendar. * * See the [Rust documentation for `ZonedDateTime`](https://docs.rs/icu/2.1.1/icu/time/struct.ZonedDateTime.html) for more information. */ export class ZonedDateTime { get date(): Date; get time(): Time; get zone(): TimeZoneInfo; /** @internal */ constructor(); /** * Creates a new {@link ZonedIsoDateTime} from an IXDTF string. * * See the [Rust documentation for `try_strict_from_str`](https://docs.rs/icu/2.1.1/icu/time/struct.ZonedDateTime.html#method.try_strict_from_str) for more information. */ static strictFromString(v: string, calendar: Calendar, ianaParser: IanaParser): ZonedDateTime; /** * Creates a new {@link ZonedDateTime} from an IXDTF string. * * See the [Rust documentation for `try_full_from_str`](https://docs.rs/icu/2.1.1/icu/time/struct.ZonedDateTime.html#method.try_full_from_str) for more information. * * @deprecated use strict_from_string */ static fullFromString(v: string, calendar: Calendar, ianaParser: IanaParser, offsetCalculator: VariantOffsetsCalculator): ZonedDateTime; /** * Creates a new {@link ZonedDateTime} from a location-only IXDTF string. * * See the [Rust documentation for `try_location_only_from_str`](https://docs.rs/icu/2.1.1/icu/time/struct.ZonedDateTime.html#method.try_location_only_from_str) for more information. */ static locationOnlyFromString(v: string, calendar: Calendar, ianaParser: IanaParser): ZonedDateTime; /** * Creates a new {@link ZonedDateTime} from an offset-only IXDTF string. * * See the [Rust documentation for `try_offset_only_from_str`](https://docs.rs/icu/2.1.1/icu/time/struct.ZonedDateTime.html#method.try_offset_only_from_str) for more information. */ static offsetOnlyFromString(v: string, calendar: Calendar): ZonedDateTime; /** * Creates a new {@link ZonedDateTime} from an IXDTF string, without requiring the offset. * * See the [Rust documentation for `try_lenient_from_str`](https://docs.rs/icu/2.1.1/icu/time/struct.ZonedDateTime.html#method.try_lenient_from_str) for more information. */ static lenientFromString(v: string, calendar: Calendar, ianaParser: IanaParser): ZonedDateTime; }