Rocky_Mountain_Vending/.pnpm-store/v10/files/12/71711a8916a0c8c5458405bee71c3726e9465eee0dd1397ae5fbe8815f25f81539872fa6749d4fffca2a1c222605df2313547296ba81eedfab4e5f91e64675
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
392 B
Text

import { Observable } from '../../Observable';
import { ObservableInput } from '../../types';
export declare function fromFetch<T>(input: string | Request, init: RequestInit & {
selector: (response: Response) => ObservableInput<T>;
}): Observable<T>;
export declare function fromFetch(input: string | Request, init?: RequestInit): Observable<Response>;
//# sourceMappingURL=fetch.d.ts.map