Files
patch-db/client/lib/source/source.ts
Matt Hill 5185db527a revert
2021-07-21 15:17:16 -06:00

8 lines
184 B
TypeScript

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