Skip to content

Commit

Permalink
feat: assert iterable types
Browse files Browse the repository at this point in the history
  • Loading branch information
43081j committed Jan 7, 2025
1 parent d229fe9 commit 6f3be80
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chai/interface/assert.ts
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ export interface AssertInterface {

isCallable(val: unknown, msg?: string): void;
isNotCallable(val: unknown, msg?: string): void;
isIterable(val: unknown, msg?: string): void;
isIterable(val: unknown, msg?: string): asserts val is Iterable<unknown>;
}

/**
Expand Down

0 comments on commit 6f3be80

Please sign in to comment.