1// generated by diplomat-tool 2import type { CalendarParseError } from "./CalendarParseError" 3import type { IsoDate } from "./IsoDate" 4import type { Time } from "./Time" 5import type { pointer, codepoint } from "./diplomat-runtime.d.ts"; 6 7 8/** An ICU4X DateTime object capable of containing a ISO-8601 date and time. 9* 10*See the [Rust documentation for `DateTime`](https://docs.rs/icu/latest/icu/time/struct.DateTime.html) for more information. 11*/ 12 13 14export class IsoDateTime { 15 16 get date() : IsoDate; 17 18 get time() : Time; 19 20 21 static fromString(v: string): IsoDateTime; 22}