/** * The everySet() method tests whether all elements in the given Set pass the * test implemented by the provided function. */ declare function everySet(set: Set, callback: (value: T, key: T, set: Set) => boolean, context?: any): boolean; declare namespace everySet {} export = everySet;