Last change
on this file since 6a80231 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
344 bytes
|
Line | |
---|
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;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.