Last change
on this file since bdd6491 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
383 bytes
|
Line | |
---|
1 | import { Observable } from '../Observable';
|
---|
2 | import { ConnectableObservable } from '../observable/ConnectableObservable';
|
---|
3 | import { UnaryFunction } from '../types';
|
---|
4 | /**
|
---|
5 | * @param value
|
---|
6 | * @return {ConnectableObservable<T>}
|
---|
7 | * @method publishBehavior
|
---|
8 | * @owner Observable
|
---|
9 | */
|
---|
10 | export declare function publishBehavior<T>(value: T): UnaryFunction<Observable<T>, ConnectableObservable<T>>;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.