UNPKG

datezone

Version:

A lightweight and comprehensive date and timeZone utility library for JavaScript.

31 lines 689 B
/** * Second in milliseconds. * * @see https://datezone.dev/docs/reference/constants#second */ export declare const SECOND: 1000; /** * Minute. * * @see https://datezone.dev/docs/reference/constants#minute */ export declare const MINUTE: 60000; /** * Hour in milliseconds. * * @see https://datezone.dev/docs/reference/constants#hour */ export declare const HOUR: 3600000; /** * Day in milliseconds. * * @see https://datezone.dev/docs/reference/constants#day */ export declare const DAY: 86400000; /** * Week in milliseconds. * * @see https://datezone.dev/docs/reference/constants#week */ export declare const WEEK: 604800000; //# sourceMappingURL=constants.pub.d.ts.map