UNPKG

@brakebein/prisma-generator-nestjs-dto

Version:

Generates DTO and Entity classes from Prisma Schema for NestJS

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