UNPKG

@flex-development/tutils

Version:
12 lines (11 loc) 283 B
/** * @file Type Definitions - ContinuousValue * @module tutils/types/ContinuousValue */ /** * [Continuous][1] data types. * * [1]: https://mathsisfun.com/definitions/continuous-data */ declare type ContinuousValue = Date | number; export { type ContinuousValue as default };