hygen-create
Version:
simplifies creation of hygen templates from existing projects
10 lines (9 loc) • 360 B
TypeScript
export declare abstract class CliApp {
protected abstract _init(): void;
private _did_exec_cmd;
protected action(func: (...args: any[]) => void): (...args: any[]) => void;
protected fix(arg1: string | undefined, arg2: string[] | undefined): string[];
protected beforeCommand(): void;
protected afterCommand(): void;
main(): void;
}