frontend/.pnpm-store/v3/files/d1/adb6d603d8021ab6861f6bf8e7a41ac4dab1ca9b8b0895bcf5b7fa6b6157c180b7bc89f32118df760f6a6540103c4e7222050d08a9a35164f80a54182a8fce

17 lines
344 B
Plaintext

export interface EmptyError extends Error {
}
export interface EmptyErrorCtor {
new (): EmptyError;
}
/**
* An error thrown when an Observable or a sequence was queried but has no
* elements.
*
* @see {@link first}
* @see {@link last}
* @see {@link single}
*
* @class EmptyError
*/
export declare const EmptyError: EmptyErrorCtor;