Skip to content

Commit

Permalink
Fix: "Zero" is not exported (#870)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zhang-Wei-666 committed Apr 24, 2024
1 parent cb6cdab commit 91a2b1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/numeric.d.ts
Expand Up @@ -3,7 +3,7 @@ import type {IsInteger} from './is-integer';

export type Numeric = number | bigint;

type Zero = 0 | 0n;
export type Zero = 0 | 0n;

/**
Matches the hidden `Infinity` type.
Expand Down

0 comments on commit 91a2b1e

Please sign in to comment.