UNPKG

@svelte-navigator/history

Version:
6 lines (5 loc) 280 B
import type { HistoryActions, NavigateFn } from "./types"; /** * Create the navigate helper function needed in a `NavigatorHistory`. */ export default function createNavigate<State = unknown>({ go, push, replace: replaceState, }: HistoryActions<State>): NavigateFn<State>;