Prisma 1 user transitioning to Prisma 2/3 with a b...
# orm-help
l
Prisma 1 user transitioning to Prisma 2/3 with a basic question. How do I get the scalar model types from Prisma? E.g. in Prisma 1, it's...
Copy code
import { Deal } from "prisma1/generated/prisma-ts"

const calculateDealProfit = (deal: Deal): number => {
 ....
}