Rocky_Mountain_Vending/.pnpm-store/v10/files/d2/718f8abc62dcf62133fd5ab41d8f575b5e86678bfa2120c218f9df20d5b3afb8602aff9c4601a9ba922e0f7dbe6d1bffb192df6e0d178e166441b88ef6866e
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

14 lines
No EOL
810 B
Text

import { Observable } from '../Observable';
import { ObservableInput } from '../types';
/**
* Collects all of the inner sources from source observable. Then, once the
* source completes, joins the values using the given static.
*
* This is used for {@link combineLatestAll} and {@link zipAll} which both have the
* same behavior of collecting all inner observables, then operating on them.
*
* @param joinFn The type of static join to apply to the sources collected
* @param project The projection function to apply to the values, if any
*/
export declare function joinAllInternals<T, R>(joinFn: (sources: ObservableInput<T>[]) => Observable<T>, project?: (...args: any[]) => R): import("../types").UnaryFunction<Observable<ObservableInput<T>>, unknown>;
//# sourceMappingURL=joinAllInternals.d.ts.map