source: trip-planner-front/node_modules/rxjs/internal/operators/publishBehavior.d.ts@ 8d391a1

Last change on this file since 8d391a1 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 383 bytes
Line 
1import { Observable } from '../Observable';
2import { ConnectableObservable } from '../observable/ConnectableObservable';
3import { UnaryFunction } from '../types';
4/**
5 * @param value
6 * @return {ConnectableObservable<T>}
7 * @method publishBehavior
8 * @owner Observable
9 */
10export declare function publishBehavior<T>(value: T): UnaryFunction<Observable<T>, ConnectableObservable<T>>;
Note: See TracBrowser for help on using the repository browser.