@getcronit/pylon
Version:

15 lines (14 loc) • 391 B
TypeScript
import { Variables, type Plugin } from '../../../index';
export interface PageData {
}
export type PageProps = {
context: Variables['pagesContext'];
data: PageData;
params: Record<string, string>;
searchParams: Record<string, string>;
path: string;
};
export type LayoutProps = PageProps & {
children: React.ReactNode;
};
export declare const setup: Plugin['setup'];