typealias DateResolvable

export type DateResolvable = Date | number | string;

Data that can be resolved to a Date object. This can be:* A Date object* A number representing a timestamp* An [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) string

Union Members

Datenumberstring