UNPKG

@weverson_na/prisma-generator-nestjs-dto

Version:

Advanced Prisma Generator with Smart Merge v2: Creates DTO and Entity classes with AST-based preservation, intelligent import management, and modular architecture for NestJS

12 lines (11 loc) 510 B
import type { TemplateHelpers } from '../helpers/template-helpers'; import type { Model, ModelParams } from '../types'; interface ComputeModelParamsParam { model: Model; allModels: Model[]; templateHelpers: TemplateHelpers; addExposePropertyDecorator: boolean; customDecoratorConfigsPath?: string; } export declare const computeModelParams: ({ model, allModels, templateHelpers, addExposePropertyDecorator, customDecoratorConfigsPath, }: ComputeModelParamsParam) => ModelParams; export {};