/**
 * Defines the metadata of a modules to be explored
 */
export interface IModuleInfo {
    type: string;
    name: string;
    path: string;
    entryPoint?: {
        class: string;
        method: string;
    };
}
