Reputation: 1474
Is there any automated way to export the type definitions of my models generated with prisma generate
but without the database CRUD methods? Then I could export them as a model module and use type definitions on client-side.
Upvotes: 1
Views: 791
Reputation: 479
You can use Pal.Js CLI to generate TypeScript definitions from your schema.prisma
file and use in any place
yarn global add @paljs/cli
//or
npm install -g @paljs/cli
then run
pal s typescript
will generate typescript file for you have all models and enums
Upvotes: 3