UNPKG

@sap/modules-exploration

Version:

SAP Modules Exploration

13 lines (12 loc) 220 B
/** * Defines the metadata of a modules to be explored */ export interface IModuleInfo { type: string; name: string; path: string; entryPoint?: { class: string; method: string; }; }