Add generic type to localStore

This commit is contained in:
Alice Gaudon 2021-05-13 14:08:35 +02:00
parent afd45bd99d
commit c1c7b8920d
1 changed files with 1 additions and 1 deletions

View File

@ -1,3 +1,3 @@
import {writable} from "svelte/store";
export const locals = writable({});
export const locals = writable<Record<string, unknown>>({});