mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-24 04:55:08 +08:00
16 lines
414 B
TypeScript
16 lines
414 B
TypeScript
|
|
export interface ObjectUnsubscribedError extends Error {
|
||
|
|
}
|
||
|
|
export interface ObjectUnsubscribedErrorCtor {
|
||
|
|
new (): ObjectUnsubscribedError;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* An error thrown when an action is invalid because the object has been
|
||
|
|
* unsubscribed.
|
||
|
|
*
|
||
|
|
* @see {@link Subject}
|
||
|
|
* @see {@link BehaviorSubject}
|
||
|
|
*
|
||
|
|
* @class ObjectUnsubscribedError
|
||
|
|
*/
|
||
|
|
export declare const ObjectUnsubscribedError: ObjectUnsubscribedErrorCtor;
|