Last change
on this file since 188ee53 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
482 bytes
|
Line | |
---|
1 | export interface ArgumentOutOfRangeError extends Error {
|
---|
2 | }
|
---|
3 | export interface ArgumentOutOfRangeErrorCtor {
|
---|
4 | new (): ArgumentOutOfRangeError;
|
---|
5 | }
|
---|
6 | /**
|
---|
7 | * An error thrown when an element was queried at a certain index of an
|
---|
8 | * Observable, but no such index or position exists in that sequence.
|
---|
9 | *
|
---|
10 | * @see {@link elementAt}
|
---|
11 | * @see {@link take}
|
---|
12 | * @see {@link takeLast}
|
---|
13 | *
|
---|
14 | * @class ArgumentOutOfRangeError
|
---|
15 | */
|
---|
16 | export declare const ArgumentOutOfRangeError: ArgumentOutOfRangeErrorCtor;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.