Rocky_Mountain_Vending/.pnpm-store/v10/files/94/cd17ce8d796247c5cbbe6065825260bd54ae8cfbc45fae6802e6e91d0aaefe6780180f922883b8e1cb05325d2c401b27b2a6075d8ed6aba4c28ef322db3f64
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

7 lines
No EOL
344 B
Text

import { Observable } from './Observable';
export interface LastValueFromConfig<T> {
defaultValue: T;
}
export declare function lastValueFrom<T, D>(source: Observable<T>, config: LastValueFromConfig<D>): Promise<T | D>;
export declare function lastValueFrom<T>(source: Observable<T>): Promise<T>;
//# sourceMappingURL=lastValueFrom.d.ts.map