This commit is contained in:
Matt Hill
2021-07-21 15:17:16 -06:00
committed by Aiden McClelland
parent 56d7cae16d
commit 3e2e1c92dd
4 changed files with 18 additions and 17 deletions

View File

@@ -1,7 +1,7 @@
import { Observable } from 'rxjs'
import { Store } from '../store'
import { HashMap, Update } from '../types'
import { Update } from '../types'
export interface Source<T extends HashMap> {
export interface Source<T> {
watch$ (store?: Store<T>): Observable<Update<T>>
}