Rocky_Mountain_Vending/.pnpm-store/v10/files/a7/c0aa2b71ccac3d9fe384219ad18c7b670e33442125dfb62841feb1ffaa9c2d5f37fb3d6b339b70e150444c64ee46518377816ce256b222cd34ea7428937719
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

16 lines
No EOL
625 B
Text

/**
* @license
* Copyright 2023 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
import type { AwaitableIterable } from '../common/types.js';
/**
* @internal
*/
export declare class AsyncIterableUtil {
static map<T, U>(iterable: AwaitableIterable<T>, map: (item: T) => Promise<U>): AsyncIterable<U>;
static flatMap<T, U>(iterable: AwaitableIterable<T>, map: (item: T) => AwaitableIterable<U>): AsyncIterable<U>;
static collect<T>(iterable: AwaitableIterable<T>): Promise<T[]>;
static first<T>(iterable: AwaitableIterable<T>): Promise<T | undefined>;
}
//# sourceMappingURL=AsyncIterableUtil.d.ts.map