prismaql
Version:
A powerful tool for managing and editing Prisma schema files using a SQL-like DSL.
10 lines • 329 B
TypeScript
import { PrismaQlHandler } from "../../handler-registries/handler-registry.js";
export interface FieldSummary {
name: string;
type: string;
isId: boolean;
isUnique: boolean;
isRelation: boolean;
}
export declare const getModel: PrismaQlHandler<"GET", "MODEL", "query">;
//# sourceMappingURL=get-model.d.ts.map