generator-jhipster
Version:
Spring Boot + Angular/React/Vue in one handy generator
20 lines (13 loc) • 623 B
TypeScript
import type { CommandTypeMap } 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';
export type { Features, Source } from '../base/types.ts';
type Command = CommandTypeMap<typeof command>;
type JdlOptions = {
baseName?: string;
applicationType?: ApplicationType;
projectVersion?: string;
};
export type Config = BaseConfig & JdlOptions & Command['Config'];
export type Options = BaseOptions & JdlOptions & Command['Options'];