diff --git a/client/lib/source/source.ts b/client/lib/source/source.ts index 45cf1b8..300ad0a 100644 --- a/client/lib/source/source.ts +++ b/client/lib/source/source.ts @@ -1,7 +1,7 @@ import { Observable } from 'rxjs' import { Store } from '../store' -import { Update } from '../types' +import { HashMap, Update } from '../types' -export interface Source { +export interface Source { watch$ (store?: Store): Observable> }