source: trip-planner-front/node_modules/rxjs/internal/SubjectSubscription.d.ts@ e29cc2e

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

initial commit

  • Property mode set to 100644
File size: 444 bytes
Line 
1import { Subject } from './Subject';
2import { Observer } from './types';
3import { Subscription } from './Subscription';
4/**
5 * We need this JSDoc comment for affecting ESDoc.
6 * @ignore
7 * @extends {Ignored}
8 */
9export declare class SubjectSubscription<T> extends Subscription {
10 subject: Subject<T>;
11 subscriber: Observer<T>;
12 closed: boolean;
13 constructor(subject: Subject<T>, subscriber: Observer<T>);
14 unsubscribe(): void;
15}
Note: See TracBrowser for help on using the repository browser.