@nu-art/commando
Version:
11 lines (10 loc) • 501 B
TypeScript
import { BaseCommando } from '../core/BaseCommando';
import { Commando_Programming } from './programming';
import { Commando_Basic } from './basic';
declare const Super: import("@nu-art/ts-common").Constructor<BaseCommando & Commando_Programming & Commando_Basic>;
export declare class Commando_Python3 extends Super {
sourceVenv(venvFolder?: string): this;
installVenv(venvFolder?: string): Promise<this>;
installRequirements(pathToRequirementsFile?: string): Promise<this>;
}
export {};