UNPKG

@westacks/vortex

Version:

Server-based routing for SPAs

19 lines (18 loc) 452 B
import { VortexExtension, Page } from '../index'; declare module '../index' { interface VortexConfig { only?: string[]; except?: string[]; reset?: string[]; preserveHistory?: boolean; preserveScroll?: boolean; replaceHistory?: boolean; } } /** * Vortex Inertia extension * * @see https://inertiajs.com */ declare const inertia: (initialPage: Page) => VortexExtension; export default inertia;