UNPKG

generator-begcode

Version:

Spring Boot + Angular/React/Vue in one handy generator

25 lines (23 loc) 2.27 kB
/* eslint-disable @typescript-eslint/consistent-type-imports */ import type { Simplify } from 'type-fest'; import type { ExportGeneratorOptionsFromCommand } from '../../command/types.js'; export type ApplicationOptions = Simplify< ExportGeneratorOptionsFromCommand<typeof import('../../../generators/app/command.js').default> & ExportGeneratorOptionsFromCommand<typeof import('../../../generators/base/command.js').default> & ExportGeneratorOptionsFromCommand<typeof import('../../../generators/bootstrap-application-base/command.js').default> & ExportGeneratorOptionsFromCommand<typeof import('../../../generators/client/command.js').default> & ExportGeneratorOptionsFromCommand<typeof import('../../../generators/git/command.js').default> & ExportGeneratorOptionsFromCommand<typeof import('../../../generators/java/generators/bootstrap/command.js').default> & ExportGeneratorOptionsFromCommand<typeof import('../../../generators/java/generators/build-tool/command.js').default> & ExportGeneratorOptionsFromCommand<typeof import('../../../generators/java/generators/graalvm/command.ts').default> & ExportGeneratorOptionsFromCommand<typeof import('../../../generators/javascript/generators/bootstrap/command.js').default> & ExportGeneratorOptionsFromCommand<typeof import('../../../generators/javascript/generators/prettier/command.js').default> & ExportGeneratorOptionsFromCommand<typeof import('../../../generators/jdl/command.js').default> & ExportGeneratorOptionsFromCommand<typeof import('../../../generators/languages/command.js').default> & ExportGeneratorOptionsFromCommand<typeof import('../../../generators/liquibase/command.js').default> & ExportGeneratorOptionsFromCommand<typeof import('../../../generators/project-name/command.js').default> & ExportGeneratorOptionsFromCommand<typeof import('../../../generators/server/command.js').default> & ExportGeneratorOptionsFromCommand<typeof import('../../../generators/spring-boot/command.js').default> & ExportGeneratorOptionsFromCommand<typeof import('../../../generators/spring-cloud/generators/gateway/command.js').default> & ExportGeneratorOptionsFromCommand<typeof import('../../../generators/spring-data-relational/command.js').default> >;