UNPKG

prismaql

Version:

A powerful tool for managing and editing Prisma schema files using a SQL-like DSL.

8 lines (6 loc) 235 B
/** * Finds and validates the Prisma schema. * @returns Promise<void> Resolves if valid, throws an error if invalid. */ declare function validatePrismaSchema(schema: string): Promise<true | Error>; export { validatePrismaSchema };