interface Date {
    epochMillis?: number;
    friendly?: string;
    iso8601?: string;
    jira?: string;
}

Properties

epochMillis?: number

Date as the number of milliseconds that have elapsed since 00:00:00 Coordinated Universal Time (UTC), 1 January 1970.

friendly?: string

Date in a user-friendly text format.

iso8601?: string

Date in ISO8601 format.

jira?: string

Date in the format used in the Jira REST APIs, which is ISO8601 format but extended with milliseconds. For example, 2016-09-28T23:08:32.097+1000.