Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

TimeZone

import type { TimeZone } from "https://aws-api.deno.dev/v0.3/services/location.ts?docs=full";

Information about a time zone. Includes the name of the time zone and the offset from UTC in seconds.

interface TimeZone {
Name: string;
Offset?: number | null;
}

§Properties

§
Name: string
[src]

The name of the time zone, following the IANA time zone standard. For example, America/Los_Angeles.

§
Offset?: number | null
[src]

The time zone's offset, in seconds, from UTC.