Last change
on this file since fa375fe was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
444 bytes
|
Rev | Line | |
---|
[6a3a178] | 1 | import { Subject } from './Subject';
|
---|
| 2 | import { Observer } from './types';
|
---|
| 3 | import { Subscription } from './Subscription';
|
---|
| 4 | /**
|
---|
| 5 | * We need this JSDoc comment for affecting ESDoc.
|
---|
| 6 | * @ignore
|
---|
| 7 | * @extends {Ignored}
|
---|
| 8 | */
|
---|
| 9 | export 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.