Update .bashrc
[dotfiles/.git] / util / isIterable.d.ts
1 /** Identifies an input as being an Iterable */
2 export declare function isIterable(input: any): input is Iterable<any>;