type-plus
Version:
Provides additional types for TypeScript.
21 lines (19 loc) • 675 B
text/typescript
export type { Integer, IsInteger, IsNotInteger, IsWhole, NotInteger } from '../numeric/integer.js'
export type { IsNegative, IsNotNegative, Negative, NotNegative } from '../numeric/negative.js'
export type {
IsNotNumeric,
IsNumeric,
NotNumericType,
Numeric,
NumericType,
Zero
} from '../numeric/numeric_type.js'
export type { IsNotPositive, IsPositive, NonPositive, Positive } from '../numeric/positive.js'
// export type { Sum } from './number_array.js'
export type { IsNotNumber, IsNumber, NotNumberType, NumberType } from './number_type.js'
export type {
IsNotStrictNumber,
IsStrictNumber,
NotStrictNumberType,
StrictNumberType
} from './strict_number_type.js'