UNPKG

projecthor

Version:

Save, manage, and run project setup commands automatically from the CLI.

9 lines (8 loc) 527 B
import { Project } from './types.js'; export declare function saveCommand(projectSetupFile?: string): Promise<void>; export declare function listCommand(projects: Project[], fullFlag?: boolean): void; export declare function setdfCommand(args: string[]): void; export declare function getdfCommand(): void; export declare function loadCommand(projectNames: string[], shellFlag?: string): void; export declare function purgeCommand(): Promise<void>; export declare function deleteCommand(projectNames: string[]): Promise<void>;