UNPKG

shelving

Version:

Toolkit for using data in JavaScript.

6 lines (5 loc) 335 B
import type { NavigationStore } from "./NavigationStore.js"; /** Context that stores the current `NavigationStore`. */ export declare const NavigationContext: import("react").Context<NavigationStore | undefined>; /** Require the current navigation store in a component. */ export declare function requireNavigation(): NavigationStore;