@sap/generator-adaptation-project
Version:
Adaptation project allows you to create an app variant for an existing SAP Fiori elements-based or SAPUI5 freestyle application, without changing the original application.
17 lines (16 loc) • 613 B
TypeScript
import { Prompts } from "@sap-devx/yeoman-ui-types";
import AdaptationProjectGeneratorBase from "../common/generator/AdaptationProjectGeneratorBase";
declare class AddComponentUsagesGenerator extends AdaptationProjectGeneratorBase {
setPromptsCallback: (fn: any) => void;
private answers;
prompts: Prompts;
private projectData;
constructor(args: string | string[], opts: any);
initializing(): Promise<void>;
prompting(): Promise<void>;
private setPrompts;
private createComponentUsageData;
writing(): Promise<void>;
end(): void;
}
export = AddComponentUsagesGenerator;