typegraphql-prisma-nestjs
Version:
This project is a fork of another with minor changes, created for personal use.
4 lines (3 loc) • 323 B
TypeScript
import type { DMMF as PrismaDMMF } from "@prisma/generator-helper";
import { InternalGeneratorOptions, ExternalGeneratorOptions } from "./options";
export default function generateCode(dmmf: PrismaDMMF.Document, baseOptions: InternalGeneratorOptions & ExternalGeneratorOptions, log?: (msg: string) => void): Promise<void>;