UNPKG

@vegardit/prisma-generator-nestjs-dto

Version:

Generates DTO and Entity classes from Prisma Schema for NestJS

10 lines (9 loc) 369 B
import type { Model, EntityParams } from '../types'; import type { TemplateHelpers } from '../template-helpers'; interface ComputeEntityParamsParam { model: Model; allModels: Model[]; templateHelpers: TemplateHelpers; } export declare const computeEntityParams: ({ model, allModels, templateHelpers, }: ComputeEntityParamsParam) => EntityParams; export {};