Rocky_Mountain_Vending/.pnpm-store/v10/files/6c/f7bf5d3927e18c7f6f848e40550fbd4e59cbe1bbe90d40b1fe21c410a232d1064ab9b7a44fc10029a25192e27f69103363dd160666c8f114fe9b02c84cfd80
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

6 lines
No EOL
623 B
Text

import { Observable } from '../Observable';
import { OperatorFunction, SchedulerLike } from '../types';
export declare function windowTime<T>(windowTimeSpan: number, scheduler?: SchedulerLike): OperatorFunction<T, Observable<T>>;
export declare function windowTime<T>(windowTimeSpan: number, windowCreationInterval: number, scheduler?: SchedulerLike): OperatorFunction<T, Observable<T>>;
export declare function windowTime<T>(windowTimeSpan: number, windowCreationInterval: number | null | void, maxWindowSize: number, scheduler?: SchedulerLike): OperatorFunction<T, Observable<T>>;
//# sourceMappingURL=windowTime.d.ts.map