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