UNPKG

nuqs-svelte

Version:

Svelte adaptation of the `nuqs` library for managing URL query strings as state.

10 lines (9 loc) 310 B
import type { AdapterInterface } from "./types"; import type { Snippet } from "svelte"; type Props = { adapter: AdapterInterface; children?: Snippet; }; declare const NuqsContext: import("svelte").Component<Props, {}, "">; type NuqsContext = ReturnType<typeof NuqsContext>; export default NuqsContext;