Files
klz-cables.com/.pnpm-store/v10/files/e4/ac19b7169c81ec53311dc65242e7240e08a149cac705853d389f22195e6b204655ea3b8d2b1b5c3fb05000915a9ac86d7844bc47760ae7bb9a6a45e6949e8f
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

37 lines
1.2 KiB
Plaintext

export interface VendoredTanstackRouter {
history: VendoredTanstackRouterHistory;
state: VendoredTanstackRouterState;
options: {
parseSearch: (search: string) => Record<string, any>;
};
matchRoutes: (pathname: string, locationSearch: {}, opts?: {
preload?: boolean;
throwOnError?: boolean;
}) => Array<VendoredTanstackRouterRouteMatch>;
subscribe(eventType: 'onResolved' | 'onBeforeNavigate', callback: (stateUpdate: {
toLocation: VendoredTanstackRouterLocation;
fromLocation?: VendoredTanstackRouterLocation;
}) => void): () => void;
}
interface VendoredTanstackRouterLocation {
pathname: string;
search: {};
state: string;
}
interface VendoredTanstackRouterHistory {
subscribe: (cb: () => void) => () => void;
}
interface VendoredTanstackRouterState {
matches: Array<VendoredTanstackRouterRouteMatch>;
pendingMatches?: Array<VendoredTanstackRouterRouteMatch>;
}
export interface VendoredTanstackRouterRouteMatch {
routeId: string;
pathname: string;
params: {
[key: string]: string;
};
}
export {};
//# sourceMappingURL=tanstackrouter-types.d.ts.map