fully-react
Version:
React Server for Vite
20 lines (18 loc) • 343 B
TypeScript
type PageProps = {
params: {
[key: string]: string;
};
searchParams: {
[key: string]: string;
};
children?: React.ReactNode;
url: string;
headers: {
[key: string]: string;
};
};
type ModuleSpec = {};
type ModuleMap = {
[key: string]: ModuleSpec;
};
export { ModuleMap, PageProps };