import { Temporal } from "https://deno.land/x/deno@v2.0.4/cli/tsc/dts/lib.deno.unstable.d.ts";
const { Instant } = Temporal;
A Temporal.Instant
is an exact point in time, with a precision in
nanoseconds. No time zone or calendar information is present. Therefore,
Temporal.Instant
has no concept of days, months, or even hours.
For convenience of interoperability, it internally uses nanoseconds since
the Unix epoch (midnight
UTC on January 1, 1970). However, a Temporal.Instant
can be created from
any of several expressions that refer to a single point in time, including
an ISO 8601 string with a
time zone offset such as '2020-01-23T17:04:36.491865121-08:00'.
See https://tc39.es/proposal-temporal/docs/instant.html for more details.
Methods
add(durationLike: Omit<Temporal.Duration | DurationLike, > | string): Temporal.Instant
| "years"
| "months"
| "weeks"
| "days"
equals(other: Temporal.Instant | string): boolean
round(roundTo: RoundTo<>): Temporal.Instant
| "hour"
| "minute"
| "second"
| "millisecond"
| "microsecond"
| "nanosecond"
since(other: Temporal.Instant | string, options?: DifferenceOptions<>): Temporal.Duration
| "hour"
| "minute"
| "second"
| "millisecond"
| "microsecond"
| "nanosecond"
subtract(durationLike: Omit<Temporal.Duration | DurationLike, > | string): Temporal.Instant
| "years"
| "months"
| "weeks"
| "days"
toJSON(): string
toLocaleString(locales?: string | string[], options?: Intl.DateTimeFormatOptions): string
toString(options?: InstantToStringOptions): string
until(other: Temporal.Instant | string, options?: DifferenceOptions<>): Temporal.Duration
| "hour"
| "minute"
| "second"
| "millisecond"
| "microsecond"
| "nanosecond"
valueOf(): never
Static Methods
compare(one: Temporal.Instant | string, two: Temporal.Instant | string): ComparisonResult
from(item: Temporal.Instant | string): Temporal.Instant
fromEpochMilliseconds(epochMilliseconds: number): Temporal.Instant
fromEpochNanoseconds(epochNanoseconds: bigint): Temporal.Instant