@git.zone/cli
Version:
A comprehensive CLI tool for enhancing and managing local development workflows with gitzone utilities, focusing on project setup, version control, code formatting, and template management.
14 lines (13 loc) • 450 B
TypeScript
import { GitzoneConfig } from './classes.gitzoneconfig.js';
import type { TGitzoneProjectType } from './classes.gitzoneconfig.js';
/**
* the Project class is a tool to work with a gitzone project
*/
export declare class Project {
static fromCwd(options?: {
requireProjectType?: boolean;
}): Promise<Project>;
gitzoneConfig: GitzoneConfig;
get type(): TGitzoneProjectType;
constructor(gitzoneConfigArg: GitzoneConfig);
}