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