rxjs
Version:
Reactive Extensions for modern JavaScript
6 lines • 339 B
TypeScript
/** @prettier */
import { OperatorFunction } from '../types';
export declare function mapTo<R>(value: R): OperatorFunction<any, R>;
/** @deprecated remove in v8. Use mapTo<R>(value: R): OperatorFunction<any, R> signature instead **/
export declare function mapTo<T, R>(value: R): OperatorFunction<T, R>;
//# sourceMappingURL=mapTo.d.ts.map