Skip to content

Commit

Permalink
fix(type): pow10
Browse files Browse the repository at this point in the history
  • Loading branch information
Rubilmax committed Dec 20, 2023
1 parent 601b694 commit 6ef4b4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ declare global {
max: (other: bigint, ...others: bigint[]) => bigint;
sum: (others: bigint[]) => bigint;

pow10: (power: bigint | bigint) => bigint;
pow10: (power: number | bigint) => bigint;
}
}

Expand Down

0 comments on commit 6ef4b4e

Please sign in to comment.