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