type-plus
Version:
Provides additional types for TypeScript.
13 lines (11 loc) • 378 B
text/typescript
export type { Integer, IsInteger, IsNotInteger, IsWhole, NotInteger } from './integer.js'
export type { IsNegative, IsNotNegative, Negative, NotNegative } from './negative.js'
export type {
IsNotNumeric,
IsNumeric,
NotNumericType,
Numeric,
NumericType,
Zero
} from './numeric_type.js'
export type { IsNotPositive, IsPositive, NonPositive, Positive } from './positive.js'