Rocky_Mountain_Vending/.pnpm-store/v10/files/cd/2d4f8bf1eff2a11d442976696faf06b1f26249a89c8a179acfe0172cef41e34bf04c58549b8fc153f0150a45dfafcad22da110a6b01712da7e018cf54a13dc
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

12 lines
No EOL
687 B
Text

import { Observable } from '../Observable';
import { ObservableInput, ObservableInputTuple } from '../types';
import { Subscriber } from '../Subscriber';
export declare function race<T extends readonly unknown[]>(inputs: [...ObservableInputTuple<T>]): Observable<T[number]>;
export declare function race<T extends readonly unknown[]>(...inputs: [...ObservableInputTuple<T>]): Observable<T[number]>;
/**
* An observable initializer function for both the static version and the
* operator version of race.
* @param sources The sources to race
*/
export declare function raceInit<T>(sources: ObservableInput<T>[]): (subscriber: Subscriber<T>) => void;
//# sourceMappingURL=race.d.ts.map