Last change
on this file was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
361 bytes
|
Line | |
---|
1 | export interface UnsubscriptionError extends Error {
|
---|
2 | readonly errors: any[];
|
---|
3 | }
|
---|
4 | export interface UnsubscriptionErrorCtor {
|
---|
5 | new (errors: any[]): UnsubscriptionError;
|
---|
6 | }
|
---|
7 | /**
|
---|
8 | * An error thrown when one or more errors have occurred during the
|
---|
9 | * `unsubscribe` of a {@link Subscription}.
|
---|
10 | */
|
---|
11 | export declare const UnsubscriptionError: UnsubscriptionErrorCtor;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.