pietrodev07
pietrodev07
HHono
Created by jamesfoley on 10/29/2024 in #help
NotFoundHandler TypeScript Error
export const notFound: NotFoundHandler = (c) => {
// rest of your code
}
export const notFound: NotFoundHandler = (c) => {
// rest of your code
}
5 replies
HHono
Created by jamesfoley on 10/29/2024 in #help
NotFoundHandler TypeScript Error
Hi, if you type the function, you don't need to type the function parameters. Anyway it's giving you error because NotFoundHandler to the C parameter assign a different type than the one you gave. NotFoundHandler for c parameter extends Context.
5 replies