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

12 lines
207 B
TypeScript
Raw Permalink Normal View History

2024-11-06 00:06:30 +02:00
import type { Snippet } from 'svelte';
2024-11-05 18:05:41 +02:00
export const globalState: {
2024-11-06 00:06:30 +02:00
title?: Snippet;
searchQuery?: string;
lastPage?: string;
2024-11-06 20:40:37 +02:00
onSearchChanged?: (event: InputEvent) => void;
2024-11-05 18:05:41 +02:00
} = $state({
})
2024-11-06 00:06:30 +02:00