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.
date-vir
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'],}; Copy
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'],};
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.