@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.
12 lines (11 loc) • 395 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(): Promise<Project>;
gitzoneConfig: GitzoneConfig;
get type(): TGitzoneProjectType;
constructor(gitzoneConfigArg: GitzoneConfig);
}