8 lines
179 B
TypeScript
8 lines
179 B
TypeScript
/**
|
|
* an error thrown when an action is invalid because the object
|
|
* has been unsubscribed
|
|
*/
|
|
export declare class ObjectUnsubscribedError extends Error {
|
|
constructor();
|
|
}
|