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;
|
2024-11-06 00:09:44 +02:00
|
|
|
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
|
|
|
|