UNPKG

nuqs-svelte

Version:

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

10 lines (9 loc) 219 B
export type CrossHookSyncPayload = { state: any; query: string | null; }; type EventMap = { [key: string]: CrossHookSyncPayload; }; export declare const emitter: import("mitt").Emitter<EventMap>; export {};