10 lines
302 B
TypeScript
10 lines
302 B
TypeScript
import type { BaseRouterProps } from "./components.js";
|
|
import type { JSX } from "solid-js";
|
|
export type RouterProps = BaseRouterProps & {
|
|
url?: string;
|
|
actionBase?: string;
|
|
explicitLinks?: boolean;
|
|
preload?: boolean;
|
|
};
|
|
export declare function Router(props: RouterProps): JSX.Element;
|