UNPKG

304 BTypeScriptView Raw
1/**
2 * The everySet() method tests whether all elements in the given Set pass the
3 * test implemented by the provided function.
4 */
5declare function everySet<T>(set: Set<T>, callback: (value: T, key: T, set: Set<T>) => boolean, context?: any): boolean;
6
7declare namespace everySet {}
8
9export = everySet;