(multipleSchemas: MultipleSchemas)
| 1 | import type { MultipleSchemas } from '@prisma/get-dmmf' |
| 2 | |
| 3 | export function extractSchemaContent(multipleSchemas: MultipleSchemas): string[] { |
| 4 | return multipleSchemas.map(([, content]) => content) |
| 5 | } |
no outgoing calls