summaryrefslogtreecommitdiff
path: root/tools/node_modules/eslint/node_modules/rxjs/internal/SubjectSubscription.d.ts
blob: ed533eebc6cb4b94e18bf95b29c7658d376002ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import { Subject } from './Subject';
import { Observer } from './types';
import { Subscription } from './Subscription';
/**
 * We need this JSDoc comment for affecting ESDoc.
 * @ignore
 * @extends {Ignored}
 */
export declare class SubjectSubscription<T> extends Subscription {
    subject: Subject<T>;
    subscriber: Observer<T>;
    closed: boolean;
    constructor(subject: Subject<T>, subscriber: Observer<T>);
    unsubscribe(): void;
}