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

11 lines
156 B
TypeScript
Raw 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-05 18:05:41 +02:00
} = $state({
})
2024-11-06 00:06:30 +02:00