Type helpers
Answered
Raspberry Horntail posted this in #help-forum
Raspberry HorntailOP
Where i can find list of type helpers(utility types etc) in next js
Answered by Netherland Dwarf
These base classes you can find here some of them https://nextjs.org/docs/pages/building-your-application/configuring/typescript
5 Replies
@Raspberry Horntail Where i can find list of type helpers(utility types etc) in next js
what utility types? can you give an example?
@joulev what utility types? can you give an example?
Raspberry HorntailOP
NextPageProps etc nextMiddlewareProps something like this
@Raspberry Horntail NextPageProps etc nextMiddlewareProps something like this
no, such types dont exist. you manually write the types yourself.
Netherland Dwarf
@joulev next.js does offer some types though like NextResponse, but what Joulev is saying is for custom props you need to extend the base class and add props there
Netherland Dwarf
These base classes you can find here some of them https://nextjs.org/docs/pages/building-your-application/configuring/typescript
Answer