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