7 lines
243 B
TypeScript
7 lines
243 B
TypeScript
import { type BaseRouterProps } from "./components.js";
|
|
import type { JSX } from "solid-js";
|
|
export type StaticRouterProps = BaseRouterProps & {
|
|
url?: string;
|
|
};
|
|
export declare function StaticRouter(props: StaticRouterProps): JSX.Element;
|