UNPKG

gen-jhipster

Version:

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

18 lines (12 loc) 572 B
import type { HandleCommandTypes } from '../../lib/command/types.ts'; import type { ApplicationType } from '../../lib/core/application-types.ts'; import type { Config as BaseConfig, Options as BaseOptions } from '../base/types.ts'; import type command from './command.ts'; type Command = HandleCommandTypes<typeof command>; type JdlOptions = { baseName?: string; applicationType?: ApplicationType; projectVersion?: string; }; export type Config = BaseConfig & JdlOptions & Command['Config']; export type Options = BaseOptions & JdlOptions & Command['Options'];