Update naming of builder navigation store type

This commit is contained in:
Andrew Kingston 2024-12-12 14:53:28 +00:00
parent 0cbf0a7a4b
commit 61b42d316b
No known key found for this signature in database
1 changed files with 2 additions and 2 deletions

View File

@ -2,13 +2,13 @@ import { writable } from "svelte/store"
type GotoFuncType = (path: string) => void type GotoFuncType = (path: string) => void
interface Store { interface PortalNavigationStore {
initialisated: boolean initialisated: boolean
goto: GotoFuncType goto: GotoFuncType
} }
export function createNavigationStore() { export function createNavigationStore() {
const store = writable<Store>({ const store = writable<PortalNavigationStore>({
initialisated: false, initialisated: false,
goto: undefined as any, goto: undefined as any,
}) })