source: trip-planner-front/node_modules/rxjs/internal/testing/HotObservable.d.ts@ eed0bf8

Last change on this file since eed0bf8 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 920 bytes
Line 
1import { Subject } from '../Subject';
2import { Subscriber } from '../Subscriber';
3import { Subscription } from '../Subscription';
4import { Scheduler } from '../Scheduler';
5import { TestMessage } from './TestMessage';
6import { SubscriptionLog } from './SubscriptionLog';
7import { SubscriptionLoggable } from './SubscriptionLoggable';
8/**
9 * We need this JSDoc comment for affecting ESDoc.
10 * @ignore
11 * @extends {Ignored}
12 */
13export declare class HotObservable<T> extends Subject<T> implements SubscriptionLoggable {
14 messages: TestMessage[];
15 subscriptions: SubscriptionLog[];
16 scheduler: Scheduler;
17 logSubscribedFrame: () => number;
18 logUnsubscribedFrame: (index: number) => void;
19 constructor(messages: TestMessage[], scheduler: Scheduler);
20 /** @deprecated This is an internal implementation detail, do not use. */
21 _subscribe(subscriber: Subscriber<any>): Subscription;
22 setup(): void;
23}
Note: See TracBrowser for help on using the repository browser.