UNPKG

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