UNPKG

@particle-network/connectkit

Version:
11 lines (10 loc) 316 B
import type { Route } from '../context/types'; import { RoutePath } from '../pages'; type State = { route: Route; }; type Actions = { setRoute: (value: Route | RoutePath) => void; }; export declare const useRouteState: import("zustand").UseBoundStore<import("zustand").StoreApi<State & Actions>>; export {};