aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/rxjs/internal/util/ArgumentOutOfRangeError.d.ts
blob: 830b291b3b06473242c240bd294cd6f002622bfd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
export interface ArgumentOutOfRangeError extends Error {
}
export interface ArgumentOutOfRangeErrorCtor {
    new (): ArgumentOutOfRangeError;
}
/**
 * An error thrown when an element was queried at a certain index of an
 * Observable, but no such index or position exists in that sequence.
 *
 * @see {@link elementAt}
 * @see {@link take}
 * @see {@link takeLast}
 *
 * @class ArgumentOutOfRangeError
 */
export declare const ArgumentOutOfRangeError: ArgumentOutOfRangeErrorCtor;