UNPKG

projecthor

Version:

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

7 lines (6 loc) 203 B
import { Project } from "./types.js"; export interface ProjectValidation { isValid: boolean; errorMessage?: string; } export declare function isValidProject(project: Project): ProjectValidation;