Files
patch-db/client/lib/source/source.ts
Drew Ansbacher cac13b2637 in source as well
2021-07-21 14:49:07 -06:00

8 lines
209 B
TypeScript

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