aboutsummaryrefslogtreecommitdiffstats
path: root/packages/shared/src
diff options
context:
space:
mode:
Diffstat (limited to 'packages/shared/src')
-rw-r--r--packages/shared/src/stores/SharedStore.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/shared/src/stores/SharedStore.ts b/packages/shared/src/stores/SharedStore.ts
index fc8372e..f301b9d 100644
--- a/packages/shared/src/stores/SharedStore.ts
+++ b/packages/shared/src/stores/SharedStore.ts
@@ -50,5 +50,5 @@ export interface SharedStoreSnapshotOut
50export interface SharedStoreListener { 50export interface SharedStoreListener {
51 onSnapshot(snapshot: SharedStoreSnapshotIn): void; 51 onSnapshot(snapshot: SharedStoreSnapshotIn): void;
52 52
53 onPatch(patch: IJsonPatch): void; 53 onPatch(patches: IJsonPatch[]): void;
54} 54}