UNPKG

@ts-livedata/core

Version:
8 lines (7 loc) 161 B
/** * Structure for handling communication on value updates from {@link LiveData}. */ interface Observer<T> { (value: T): void; } export default Observer;