The-Agentsmiths / hono-cf-gpts-quickstart-template

0 stars 0 forks source link

How to Pass Context Typed Data #13

Open bramses opened 9 months ago

bramses commented 9 months ago
export const handler = (c: Context) => {
    const { name } = c.req.valid("param");

does not work because context is not typed. How do I pass context typed data when it is in its own file?