generator-begcode
Version:
Spring Boot + Angular/React/Vue in one handy generator
58 lines (57 loc) • 1.87 kB
TypeScript
declare const command: {
readonly arguments: {
readonly languages: {
readonly description: "Languages to generate";
readonly type: ArrayConstructor;
readonly required: false;
};
};
readonly configs: {
readonly languages: {
readonly cli: {
readonly type: ArrayConstructor;
readonly hide: true;
};
readonly scope: "storage";
};
readonly languagesDefinition: {
readonly cli: {
readonly type: ArrayConstructor;
readonly hide: true;
};
readonly scope: "storage";
};
readonly enableTranslation: {
readonly cli: {
readonly description: "Enable translation";
readonly type: BooleanConstructor;
};
readonly scope: "storage";
};
readonly language: {
readonly cli: {
readonly alias: "l";
readonly description: "Language to be added to application (existing languages are not removed)";
readonly type: ArrayConstructor;
};
readonly scope: "none";
};
readonly nativeLanguage: {
readonly cli: {
readonly alias: "n";
readonly description: "Set application native language";
readonly type: StringConstructor;
readonly required: false;
};
readonly scope: "storage";
};
readonly regenerateLanguages: {
readonly cli: {
readonly description: "Regenerate languages";
readonly type: BooleanConstructor;
};
readonly scope: "generator";
};
};
};
export default command;