meowsic/resources/js/Library/PassState.svelte.ts

11 lines
207 B
TypeScript

import type { Snippet } from 'svelte';
export const globalState: {
title?: Snippet;
searchQuery?: string;
lastPage?: string;
onSearchChanged?: (event: InputEvent) => void;
} = $state({
})