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>
15 lines
No EOL
642 B
Text
15 lines
No EOL
642 B
Text
import { Subject } from '../Subject';
|
|
import { Scheduler } from '../Scheduler';
|
|
import { TestMessage } from './TestMessage';
|
|
import { SubscriptionLog } from './SubscriptionLog';
|
|
import { SubscriptionLoggable } from './SubscriptionLoggable';
|
|
export declare class HotObservable<T> extends Subject<T> implements SubscriptionLoggable {
|
|
messages: TestMessage[];
|
|
subscriptions: SubscriptionLog[];
|
|
scheduler: Scheduler;
|
|
logSubscribedFrame: () => number;
|
|
logUnsubscribedFrame: (index: number) => void;
|
|
constructor(messages: TestMessage[], scheduler: Scheduler);
|
|
setup(): void;
|
|
}
|
|
//# sourceMappingURL=HotObservable.d.ts.map |