declare module "@extra-array/reject" { import type { testFn } from "./_types"; /** * Discards values which pass a test. * @param x an array * @param ft test function (v, i, x) */ declare function reject(x: Iterable, ft: testFn): T[]; export = reject; //# sourceMappingURL=reject.d.ts.map}