generator-begcode
Version:
Spring Boot + Angular/React/Vue in one handy generator
10 lines (9 loc) • 653 B
TypeScript
import type { JHipsterOptionDefinition } from '../jdl/core/types/parsing.js';
import type { ConfigSpec, JHipsterArguments, JHipsterChoices, JHipsterConfigs, JHipsterOption } from './types.js';
type JHipsterArgumentsWithChoices = JHipsterArguments & {
choices?: JHipsterChoices;
};
export declare const extractArgumentsFromConfigs: (configs: JHipsterConfigs | undefined) => JHipsterArgumentsWithChoices;
export declare const extractJdlDefinitionFromCommandConfig: (configs?: JHipsterConfigs) => JHipsterOptionDefinition[];
export declare const convertConfigToOption: (name: string, config?: ConfigSpec<any>) => JHipsterOption | undefined;
export {};