Actualizacion maquina principal
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / rxjs / internal / util / EmptyError.d.ts
1 export interface EmptyError extends Error {
2 }
3 export interface EmptyErrorCtor {
4     new (): EmptyError;
5 }
6 /**
7  * An error thrown when an Observable or a sequence was queried but has no
8  * elements.
9  *
10  * @see {@link first}
11  * @see {@link last}
12  * @see {@link single}
13  *
14  * @class EmptyError
15  */
16 export declare const EmptyError: EmptyErrorCtor;