export interface GenerateOptions {
outPath: string;
projectName: string;
groupId: string;
artifactId: string;
}
export default class GenerateCommand {
private options;
constructor(options: GenerateOptions);
generate(schema: any, skipModuleGeneration?: boolean): void;
}