Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ArgumentOutOfRangeError.d.ts 482B

12345678910111213141516
  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;