From 56d7cae16d8ccb33a7f64ee52cd3d286420f422c Mon Sep 17 00:00:00 2001 From: Drew Ansbacher Date: Wed, 21 Jul 2021 14:49:07 -0600 Subject: [PATCH] in source as well --- client/lib/source/source.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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> }