UNPKG
@ts-livedata/core
Version:
latest (1.0.1-alpha01)
1.0.1-alpha01
1.0.0-alpha02
1.0.0-alpha01
0.0.0-alpha07
0.0.0-alpha06
0.0.0-alpha05
0.0.0-alpha04
0.0.0-alpha03
0.0.0-alpha02
0.0.0-alpha01
A TypeScript LiveData library.
github.com/brendangoldberg/ts-livedata
brendangoldberg/ts-livedata
@ts-livedata/core
/
Observer.d.ts
8 lines
(7 loc)
•
161 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
/** * Structure for handling communication on value updates from {@link LiveData}. */
interface
Observer
<
T
> { (
value
: T):
void
; } export
default
Observer;