Type Alias FullDate<SpecificTimezone>

FullDate: Simplify<
    Overwrite<
        typeof fullDateShape["runtimeType"],
        { second: Second; timezone: SpecificTimezone },
    >,
>

A serializable object that completely specifies how any given date should be represented, including its timezone, to millisecond accuracy. This is the core type of the date-vir package, with most operations either requiring or returning this type.

Type Parameters

import {FullDate, timezones} from 'date-vir';

const myDate: FullDate = {
year: 2024,
month: 6,
day: 2,

hour: 13,
minute: 32,
second: 12,

milliseconds: 94,
timezone: timezones['Australia/Brisbane'],
};