forked from ard/ruoyi-api

‘liusuyi’
2023-12-05 42ea9bdbcd2d8d66fd623a982a0c48dda509254d
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;