Skip to main content
Version: 5.x.x

DateInterval


import { DateInterval } from "@hyper-fetch/core"

Description

Defined in constants/time.constants.ts:1

Preview

enum DateInterval {
day = 86400000;
hour = 3600000;
minute = 60000;
month30 = 2592000000;
month31 = 2678400000;
second = 1000;
week = 604800000;
year = 31536000000;
yearLeap = 31622400000;
}