diff --git a/packages/builder/src/stores/portal/navigation.ts b/packages/builder/src/stores/portal/navigation.ts index 2b230622f6..4eb50bc84f 100644 --- a/packages/builder/src/stores/portal/navigation.ts +++ b/packages/builder/src/stores/portal/navigation.ts @@ -2,13 +2,13 @@ import { writable } from "svelte/store" type GotoFuncType = (path: string) => void -interface Store { +interface PortalNavigationStore { initialisated: boolean goto: GotoFuncType } export function createNavigationStore() { - const store = writable({ + const store = writable({ initialisated: false, goto: undefined as any, })