UNPKG

@flex-development/tutils

Version:
12 lines (11 loc) 279 B
/** * @file Type Definitions - TimestampUnix * @module tutils/types/TimestampUnix */ /** * Number of seconds between a particular date and the Unix Epoch. * * @see https://unixtimestamp.com */ declare type TimestampUnix = number; export { type TimestampUnix as default };