@feflow/cli
Version:
A front-end flow tool.
26 lines • 683 B
TypeScript
import { Command } from './command';
import { Dependencies } from './dependencies';
import Feflow from '../../';
export declare class Plugin {
path: string;
name: string;
desc: string;
dep: Dependencies;
command: Command;
autoUpdate: boolean;
test: Command;
preInstall: Command;
postInstall: Command;
preRun: Command;
postRun: Command;
preUpgrade: Command;
postUpgrade: Command;
preUninstall: Command;
postUninstall: Command;
usage: any;
langRuntime: boolean;
private readonly ctx;
constructor(ctx: Feflow, pluginPath: string, config: any);
check(): Promise<void>;
}
//# sourceMappingURL=plugin.d.ts.map