Skip to content

Commit 0b48282

Browse files
committed
Improve typing
1 parent 41f51c8 commit 0b48282

File tree

1 file changed

+2
-2
lines changed
  • packages/hardhat-chai-matchers/src

1 file changed

+2
-2
lines changed

packages/hardhat-chai-matchers/src/types.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,14 @@ declare namespace Chai {
2424
): AsyncAssertion;
2525
changeEtherBalances(
2626
accounts: any[],
27-
balances: any[] | ((changes: any[]) => boolean),
27+
balances: any[] | ((changes: bigint[]) => boolean),
2828
options?: any
2929
): AsyncAssertion;
3030
changeTokenBalance(token: any, account: any, balance: any): AsyncAssertion;
3131
changeTokenBalances(
3232
token: any,
3333
account: any[],
34-
balance: any[] | ((changes: any[]) => boolean)
34+
balance: any[] | ((changes: bigint[]) => boolean)
3535
): AsyncAssertion;
3636
}
3737

0 commit comments

Comments
 (0)