What's the difference between importing types thes...
# orm-help
d
What's the difference between importing types these two ways? Which one should I prefer? Tried finding some info on this in the docs but didn't see anything explicitly referencing how to import a basic model type - if there is a page or guide that I'm overlooking I would love to read it over!
Copy code
import type { Group } from '@prisma/client';
import type { Group } from 'prisma/prisma-client';
c
I asked the same question and was told
'@prisma/client'
imports and re-exports the other one, so now I'm just using
'@prisma/client'
although I'm not sure if that's best.