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;
}
