remove poll altogether

This commit is contained in:
Matt Hill
2022-08-16 15:14:39 -06:00
parent caf53a9141
commit a8eaf2ca41
5 changed files with 14 additions and 55 deletions

View File

@@ -3,5 +3,5 @@ import { Store } from '../store'
import { Update } from '../types'
export interface Source<T> {
watch$(store?: Store<T>): Observable<Update<T> | null>
watch$(store?: Store<T>): Observable<Update<T>>
}