@wocker/ws
Version:
Docker workspace for web projects
13 lines (12 loc) • 544 B
TypeScript
import { AppConfigService } from "@wocker/core";
import { PluginService } from "../services/PluginService";
export declare class PluginController {
protected readonly appConfigService: AppConfigService;
protected readonly pluginService: PluginService;
constructor(appConfigService: AppConfigService, pluginService: PluginService);
list(): Promise<string>;
add(addName: string, beta?: boolean): Promise<void>;
remove(removeName: string): Promise<void>;
update(): Promise<void>;
getInstalledPlugins(): string[];
}