2f1e127c8f85f860fd786b67eafcbbe9af74aed136534076964e23daf291d8dc3f561e818d8bd30d70ed9fc2c645619ca085ff3c2814ffb2dd2741241caa3e 542 B

1234567891011121314151617
  1. export interface NotFoundError extends Error {
  2. }
  3. export interface NotFoundErrorCtor {
  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): NotFoundError;
  9. }
  10. /**
  11. * An error thrown when a value or values are missing from an
  12. * observable sequence.
  13. *
  14. * @see {@link operators/single}
  15. */
  16. export declare const NotFoundError: NotFoundErrorCtor;
  17. //# sourceMappingURL=NotFoundError.d.ts.map