Interface TimeComponents

Timestamp represented as separate year/month/... components

interface TimeComponents {
    day: number;
    hour: number;
    milli: number;
    minute: number;
    month: number;
    second: number;
    year: number;
}

Properties

day: number

Day of month 1-31

hour: number

Hour 0-23

milli: number

Millisecond 0-999

minute: number

Minute

month: number

Month 1-12

second: number

Second

year: number

Year

Generated using TypeDoc