Skip to content

Instantly share code, notes, and snippets.

@KirillTregubov
Last active August 31, 2023 20:15
Show Gist options
  • Save KirillTregubov/d9c5434a6112a2daa3e11dc5f582a338 to your computer and use it in GitHub Desktop.
Save KirillTregubov/d9c5434a6112a2daa3e11dc5f582a338 to your computer and use it in GitHub Desktop.
app.post<{
Body: {
userId: string
}
// More keys: https://fastify.dev/docs/latest/Reference/TypeScript/#using-generics (3rd step)
}>(
'/my-endpoint',
async ({ body }, reply) {
console.log(body) // <- is of correct type
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment