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

CivilDateTime

import type { CivilDateTime } from "https://googleapis.deno.dev/v1/health:v4.ts";

Civil time representation similar to google.type.DateTime, but ensures that neither the timezone nor the UTC offset can be set to avoid confusion between civil and physical time queries.

interface CivilDateTime {
date?: Date;
time?: TimeOfDay;
}

§Properties

§
date?: Date
[src]

Required. Calendar date.

§

Optional. Time of day. Defaults to the start of the day, at midnight if omitted.