UNPKG

@getcronit/pylon

Version:

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

13 lines (12 loc) 384 B
import { Context } from '../context'; import { PylonConfig } from '..'; interface PylonHandlerOptions { graphql: { Query: Record<string, any>; Mutation?: Record<string, any>; Subscription?: Record<string, any>; }; config?: PylonConfig; } export declare const handler: (options: PylonHandlerOptions) => (c: Context) => Promise<Response>; export {};