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 Feb 25, 2024
1 parent 3923df8 commit 46c5f7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chai/interface/assert.ts
Expand Up @@ -511,7 +511,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 46c5f7b

Please sign in to comment.