452c1d1a4db49bad7d6e61d224801875bfc7e71cf0fe725275fce7e65783d5d08697d19b7daa069d545fe7cf025b401f4ec120c8bdfdb3156ae6c570e637b2 544 B

12345678910
  1. import { OperatorFunction } from '../types';
  2. /** @deprecated To be removed in v9. Use {@link map} instead: `map(() => value)`. */
  3. export declare function mapTo<R>(value: R): OperatorFunction<unknown, R>;
  4. /**
  5. * @deprecated Do not specify explicit type parameters. Signatures with type parameters
  6. * that cannot be inferred will be removed in v8. `mapTo` itself will be removed in v9,
  7. * use {@link map} instead: `map(() => value)`.
  8. * */
  9. export declare function mapTo<T, R>(value: R): OperatorFunction<T, R>;
  10. //# sourceMappingURL=mapTo.d.ts.map