@sap/modules-exploration
Version:
SAP Modules Exploration
13 lines (12 loc) • 590 B
TypeScript
import { IModuleFilter } from "@sap/consume-services-types";
/**
* Defines the input to be passed to the modules-exploration constructor and affects its behavior.
* modulesPath - Defines location to group of modules (npm modules/yeoman generators).
* modulesFilter - A list of IModuleFilter which defines a map of keys and values by which the module should be filtered.
* configPath - A shared configuration file for sharing information between modules.
*/
export interface IExplorationOptions {
modulesPath: string;
modulesFilter?: IModuleFilter[];
configPath?: string;
}