2afd91f19df1c2c03d440f1beacfdabef58300311e46f3b65844688ce0c608ad85746d0dbe141391c07b64b7a8a0017f3250c0d7b0d078024feb3daa830313 558 B

1234567891011121314151617
  1. export interface SequenceError extends Error {
  2. }
  3. export interface SequenceErrorCtor {
  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 (message: string): SequenceError;
  9. }
  10. /**
  11. * An error thrown when something is wrong with the sequence of
  12. * values arriving on the observable.
  13. *
  14. * @see {@link operators/single}
  15. */
  16. export declare const SequenceError: SequenceErrorCtor;
  17. //# sourceMappingURL=SequenceError.d.ts.map