move client from separate repo

This commit is contained in:
Aiden McClelland
2021-06-15 16:42:47 -06:00
parent bd871ddf0e
commit e210d24754
21 changed files with 4370 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
import { Observable } from 'rxjs'
import { Update } from '../sequence-store'
export interface Source<T> {
watch$ (sequence$?: Observable<number>): Observable<Update<T>>
}