UNPKG

@getcronit/pylon

Version:

![Pylon cover](https://github.com/user-attachments/assets/c28e49b2-5672-4849-826e-8b2eab0360cc)

15 lines (14 loc) 391 B
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'];