From 91a2b1e6b36cfea2fa0c9546ad22483eff26dd5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=80=9A=E7=AA=97=E5=90=AC=E9=9B=A8=E4=B8=BF=E9=86=89?= =?UTF-8?q?=E6=97=A0=E5=BF=83?= <994039348@qq.com> Date: Wed, 24 Apr 2024 11:31:48 +0800 Subject: [PATCH] Fix: "Zero" is not exported (#870) --- source/numeric.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/numeric.d.ts b/source/numeric.d.ts index 3edbf8db9..c02847ec4 100644 --- a/source/numeric.d.ts +++ b/source/numeric.d.ts @@ -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.