declare module "@extra-array/some" { import type { testFn } from "./_types"; /** * Checks if any value satisfies a test. * @param x an array * @param ft test function (v, i, x) */ declare function some(x: T[], ft?: testFn): boolean; export = some; //# sourceMappingURL=some.d.ts.map}