@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
11 lines (10 loc) • 428 B
TypeScript
import { TemplateHelpers } from '../template-helpers';
import type { Model, ModelParams } from '../types';
interface ComputeModelParamsParam {
model: Model;
allModels: Model[];
templateHelpers: TemplateHelpers;
addExposePropertyDecorator: boolean;
}
export declare const computeModelParams: ({ model, allModels, templateHelpers, addExposePropertyDecorator, }: ComputeModelParamsParam) => ModelParams;
export {};