Rocky_Mountain_Vending/.pnpm-store/v10/files/46/0550732bd7b7990d5434a7bfc89b04fafc7c8cd3ddc5153cba7cb7de9aa491d3290445e07b1ec0606a49bbbd91bf48b62e371d305a9ac52446b10a9eee4997
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

37 lines
1 KiB
Text

/**
* @license
* Copyright 2023 Google LLC
* SPDX-License-Identifier: Apache-2.0
*/
declare module 'rxjs' {
export * from 'rxjs/index.js';
// Puppeteer uses a later version of rxjs as a dev dep.
// We don't need it for normal execution, but these types are necessary
// when we reach into puppeteer internals in `lightrider-entry.js`
export const catchError: any;
export const defaultIfEmpty: any;
export const filter: any;
export const first: any;
export const ignoreElements: any;
export const map: any;
export const mergeMap: any;
export const mergeScan: any;
export const raceWith: any;
export const retry: any;
export const tap: any;
export const throwIfEmpty: any;
export const firstValueFrom: any;
export const delay: any;
export const startWith: any;
export const switchMap: any;
export const take: any;
export const bufferCount: any;
export const concatMap: any;
export const debounceTime: any;
export const lastValueFrom: any;
export const takeUntil: any;
export const delayWhen: any;
}