/** * Generator that returns triple of subsequent values in the given array. * @param array source array * @returns triple of previous, current and next value on every call */ declare function triple(array: T[]): Generator<{ prev?: T; current: T; next?: T; }, undefined, unknown>; export default triple; //# sourceMappingURL=triple.d.ts.map