UNPKG

@getcronit/pylon

Version:

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

17 lines (16 loc) 476 B
import { Variables, type Plugin } from '../../../index'; export interface PageData { } export type PageProps = { context: Variables['pagesContext']; data: PageData & { $refetch: () => Promise<void>; }; params: Record<string, string | string[] | undefined>; searchParams: Record<string, string>; path: string; }; export type LayoutProps = PageProps & { children: React.ReactNode; }; export declare const setup: NonNullable<Plugin['setup']>;