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

TimeInNanos

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

Contains a timestamp with optional nanosecond granularity.

interface TimeInNanos {
offsetInNanos?: number | null;
timeInSeconds: number;
}

§Properties

§
offsetInNanos?: number | null
[src]

The nanosecond offset from timeInSeconds.

§
timeInSeconds: number
[src]

The timestamp date, in seconds, in the Unix epoch format. Fractional nanosecond data is provided by offsetInNanos.