import { Temporal } from "temporal-spec"; //#region src/runtime/temporal.d.ts /** * Typed access to the runtime's Temporal API, without installing a polyfill. * Constructors are resolved on access so configuration files can load in Node.js. * @example * import { Temporal } from "@tailor-platform/sdk/runtime"; * const tomorrow: Temporal.PlainDate = Temporal.Now.plainDateISO().add({ days: 1 }); */ declare const Temporal$1: typeof Temporal; /** Temporal instance types supplied by the SDK, independent of TypeScript's lib settings. */ declare namespace Temporal$1 { /** The runtime Temporal.PlainDate instance. */ type PlainDate = Temporal.PlainDate; /** The runtime Temporal.PlainTime instance. */ type PlainTime = Temporal.PlainTime; /** The runtime Temporal.PlainDateTime instance. */ type PlainDateTime = Temporal.PlainDateTime; /** The runtime Temporal.PlainYearMonth instance. */ type PlainYearMonth = Temporal.PlainYearMonth; /** The runtime Temporal.PlainMonthDay instance. */ type PlainMonthDay = Temporal.PlainMonthDay; /** The runtime Temporal.ZonedDateTime instance. */ type ZonedDateTime = Temporal.ZonedDateTime; /** The runtime Temporal.Duration instance. */ type Duration = Temporal.Duration; /** The runtime Temporal.Instant instance. */ type Instant = Temporal.Instant; } //#endregion export { Temporal$1 as Temporal };