import { BaseGenerator } from './BaseGenerator'; /** * DTO Generator - Generates Create, Update, and Query DTOs */ export class DtoGenerator extends BaseGenerator { /** * Generate DTO file */ public async generate(): Promise { const outputPath = this.getOutputPath('dto', 'Dto'); const content = await this.render('dto/dto.hbs', this.spec); this.changeset.createFile(outputPath, content, `Generate DTOs for ${this.spec.module}`); } }