Skip to content

Commit 4b7d5a6

Browse files
fix: bigint literal value cannot be null
1 parent 223c96c commit 4b7d5a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/tsc/dts/lib.deno.unstable.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2573,7 +2573,7 @@ declare namespace Deno {
25732573
type: "Literal";
25742574
raw: string;
25752575
bigint: string;
2576-
value: bigint | null;
2576+
value: bigint;
25772577
}
25782578

25792579
/**

0 commit comments

Comments
 (0)