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>
10 lines
No EOL
486 B
Text
10 lines
No EOL
486 B
Text
import { MonoTypeOperatorFunction, SchedulerLike } from '../types';
|
|
export interface ShareReplayConfig {
|
|
bufferSize?: number;
|
|
windowTime?: number;
|
|
refCount: boolean;
|
|
scheduler?: SchedulerLike;
|
|
}
|
|
export declare function shareReplay<T>(config: ShareReplayConfig): MonoTypeOperatorFunction<T>;
|
|
export declare function shareReplay<T>(bufferSize?: number, windowTime?: number, scheduler?: SchedulerLike): MonoTypeOperatorFunction<T>;
|
|
//# sourceMappingURL=shareReplay.d.ts.map |