项目原始demo,不改动
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

ArgumentOutOfRangeError.d.ts 344 B

12345678910111213
  1. /**
  2. * An error thrown when an element was queried at a certain index of an
  3. * Observable, but no such index or position exists in that sequence.
  4. *
  5. * @see {@link elementAt}
  6. * @see {@link take}
  7. * @see {@link takeLast}
  8. *
  9. * @class ArgumentOutOfRangeError
  10. */
  11. export declare class ArgumentOutOfRangeError extends Error {
  12. constructor();
  13. }