From c1c7b8920da75ca758ed3908bdd012619a464ea8 Mon Sep 17 00:00:00 2001 From: Alice Gaudon Date: Thu, 13 May 2021 14:08:35 +0200 Subject: [PATCH] Add generic type to localStore --- assets/ts/stores.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/ts/stores.ts b/assets/ts/stores.ts index 257d0be..015beb4 100644 --- a/assets/ts/stores.ts +++ b/assets/ts/stores.ts @@ -1,3 +1,3 @@ import {writable} from "svelte/store"; -export const locals = writable({}); +export const locals = writable>({});