20c0418922e93e854f9567ab61fd9608f2db747a5c444a8fd38f7bcd9276223f7446d880089fc5ece4f329007c82c9780736bda03dceaae7305be441955afb 682 B

12345678910111213141516171819
  1. export interface ArgumentOutOfRangeError extends Error {
  2. }
  3. export 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. export declare const ArgumentOutOfRangeError: ArgumentOutOfRangeErrorCtor;
  19. //# sourceMappingURL=ArgumentOutOfRangeError.d.ts.map