UNPKG

@flex-development/tutils

Version:
11 lines (10 loc) 267 B
/** * @file Type Definitions - NumberLike * @module tutils/types/NumberLike */ import type Numeric from './numeric.cjs'; /** * A string that contains only numbers or a number. */ declare type NumberLike = Numeric | number; export { type NumberLike as default };