10 lines
230 B
TypeScript
10 lines
230 B
TypeScript
export * from '@prisma/client'
|
|
|
|
// Named export for enums to avoid vite barrel export bug (https://github.com/nrwl/nx/issues/13704)
|
|
export {
|
|
Plan,
|
|
WorkspaceRole,
|
|
GraphNavigation,
|
|
CollaborationType,
|
|
} from '@prisma/client'
|