export declare class HttpModulesLoader { protected appPath: string; /** * files paths that would be fetched from the each module */ protected files: string[]; /** * Constructor */ constructor(appPath: string); /** * Fetch all needed files from the each module path */ fetch(): string[]; /** * Fetch all needed files from the module */ protected fetchModuleFiles(modulePath: string): string[]; } //# sourceMappingURL=http-modules-loader.d.ts.map