mirror of
https://github.com/Start9Labs/patch-db.git
synced 2026-04-01 04:43:40 +00:00
8 lines
184 B
TypeScript
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>>
|
|
}
|