declare module "@extra-array/take-while" { import type { testFn } from "./_types"; /** * Keeps values from left, while a test passes. * @param x an array * @param ft test function (v, i, x) */ declare function takeWhile(x: T[], ft: testFn): T[]; export = takeWhile; //# sourceMappingURL=takeWhile.d.ts.map}