import { widgetInterface } from '../widgets/widgetBase'; export interface moduleBase { name: string; moduleID: string; version: string; author: string; description: string; licenseCode?: string; pages: { title: string; path: string; group?: string; component: any; }[]; widgets: widgetInterface[]; } //# sourceMappingURL=moduleBase.d.ts.map