declaremodule"@extra-array/filter" {
importtype { testFn } from"./_types";
/**
* Keeps values which pass a test.
* @param x an array
* @param ft test function (v, i, x)
*/declarefunction filter<T>(x: T[], ft: testFn<T>): T[];
export = filter;
//# sourceMappingURL=filter.d.ts.map}