/** * Helper functions for working with query results */ /** * Collect all results from an AsyncIterable into an array */ export declare function toArray(iterable: AsyncIterable): Promise; /** * Add toArray method to an AsyncIterable */ export declare function withToArray(iterable: AsyncIterable): AsyncIterable & { toArray: () => Promise; }; //# sourceMappingURL=query-helpers.d.ts.map