source: trip-planner-front/node_modules/rxjs/internal/util/EmptyError.d.ts@ 571e0df

Last change on this file since 571e0df was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 344 bytes
Line 
1export interface EmptyError extends Error {
2}
3export 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 */
16export declare const EmptyError: EmptyErrorCtor;
Note: See TracBrowser for help on using the repository browser.