Skip to content

Commit

Permalink
fix: NumberPlus ref
Browse files Browse the repository at this point in the history
  • Loading branch information
unional committed Oct 2, 2023
1 parent d6071e9 commit 8093050
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions type-plus/ts/number/number_plus.ts
Original file line number Diff line number Diff line change
@@ -1,16 +1,23 @@
export type { Integer, IsInteger, IsNotInteger, IsWhole, NotInteger } from '../numeric/integer.js'
export type { IsNegative, IsNotNegative, Negative, NotNegative } from '../numeric/negative.js'
export type { Integer, IsWhole, NotInteger } from '../numeric/integer.js'
export type * from '../numeric/is_integer.js'
export type * from '../numeric/is_negative.js'
export type * from '../numeric/is_not_integer.js'
export type * from '../numeric/is_not_negative.js'
export type * from '../numeric/is_not_numeric.js'
export type * from '../numeric/is_not_positive.js'
export type * from '../numeric/is_numeric.js'
export type * from '../numeric/is_positive.js'
export type { 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 { NonPositive, Positive } from '../numeric/positive.js'
export type * from './is_not_number.js'
export type * from './is_not_strict_number.js'
export type * from './is_number.js'
export type * from './is_strict_number.js'

// export type { Sum } from './number_array.js'

0 comments on commit 8093050

Please sign in to comment.