UNPKG

@interopio/desktop-cli

Version:

CLI tool for setting up, building and packaging io.Connect Desktop projects

19 lines 619 B
import { ComponentReference } from "./component"; /** * Service for managing components */ export declare class ComponentsService { private logger; private componentsStore; constructor(); listComponentsInThisProject(): Promise<ComponentReference[]>; browseComponentsFromStore(): Promise<Array<{ name: string; versions: string[]; }>>; installComponent(name: string, version?: string): Promise<any>; uninstallComponent(name: string): Promise<any>; installComponents(): Promise<any>; private installComponentCore; } //# sourceMappingURL=components.service.d.ts.map