mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-04-22 17:19:08 +00:00
11 lines
388 B
TypeScript
11 lines
388 B
TypeScript
![]() |
import { Observable } from '../Observable';
|
||
|
import { ConnectableObservable } from '../observable/ConnectableObservable';
|
||
|
import { UnaryFunction } from '../interfaces';
|
||
|
/**
|
||
|
* @param value
|
||
|
* @return {ConnectableObservable<T>}
|
||
|
* @method publishBehavior
|
||
|
* @owner Observable
|
||
|
*/
|
||
|
export declare function publishBehavior<T>(value: T): UnaryFunction<Observable<T>, ConnectableObservable<T>>;
|