prisma-grapher
Version:
ERD generator for prisma schemas
15 lines • 516 B
TypeScript
import { GeneratorOptions } from "@prisma/generator-helper";
export type PrismaGrapherConfig = {
disabled?: string;
title?: string;
ignoreEnums?: string;
lineColor?: string;
headerBackgroundColor?: string;
headerForegroundColor?: string;
bodyBackgroundColor?: string;
bodyBackgroundColor2?: string;
bodyForegroundColor?: string;
typeForegroundColor?: string;
};
export declare function generate(options: GeneratorOptions): Promise<void>;
//# sourceMappingURL=generate.d.ts.map