UNPKG

719 BTypeScriptView Raw
1export interface ArgumentOutOfRangeError extends Error {
2}
3export interface ArgumentOutOfRangeErrorCtor {
4 /**
5 * @deprecated Internal implementation detail. Do not construct error instances.
6 * Cannot be tagged as internal: https://github.com/ReactiveX/rxjs/issues/6269
7 */
8 new (): ArgumentOutOfRangeError;
9}
10/**
11 * An error thrown when an element was queried at a certain index of an
12 * Observable, but no such index or position exists in that sequence.
13 *
14 * @see {@link elementAt}
15 * @see {@link take}
16 * @see {@link takeLast}
17 *
18 * @class ArgumentOutOfRangeError
19 */
20export declare const ArgumentOutOfRangeError: ArgumentOutOfRangeErrorCtor;
21//# sourceMappingURL=ArgumentOutOfRangeError.d.ts.map
\No newline at end of file