@sap/cds-dk
Version:
Command line client and development toolkit for the SAP Cloud Application Programming Model
24 lines (19 loc) • 437 B
TypeScript
/**
* Called from wrapper modules
*/
export interface CDSGenerator {
/**
* Initializes the generator and starts generation
* @param projectName the new project name or null
* @param options the current options
*/
stepInit(projectName: string, options: any): Promise<void>;
/**
* Displays a final message
*/
stepEnd(): Promise<void>;
/**
* Contains the parameter description
*/
uiConfig?: any;
}