Type alias ISODate

ISODate: `${ISOYear}-${ISOMonth}-${ISODayOfMonth}T${bigint}${bigint}:${bigint}${bigint}:${bigint}${bigint}.${bigint}${bigint}${bigint}Z`

String representing an ISO date.

Remarks

This type is a string representing an ISO 8601 format of a date (returned by Date.prototype.toISOString).

Example

const date: ISODate = "2020-01-01T00:00:00.000Z";

See