Last change
on this file since 6a80231 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
414 bytes
|
Line | |
---|
1 | export interface ObjectUnsubscribedError extends Error {
|
---|
2 | }
|
---|
3 | export interface ObjectUnsubscribedErrorCtor {
|
---|
4 | new (): ObjectUnsubscribedError;
|
---|
5 | }
|
---|
6 | /**
|
---|
7 | * An error thrown when an action is invalid because the object has been
|
---|
8 | * unsubscribed.
|
---|
9 | *
|
---|
10 | * @see {@link Subject}
|
---|
11 | * @see {@link BehaviorSubject}
|
---|
12 | *
|
---|
13 | * @class ObjectUnsubscribedError
|
---|
14 | */
|
---|
15 | export declare const ObjectUnsubscribedError: ObjectUnsubscribedErrorCtor;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.