@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.
9 lines (8 loc) • 313 B
TypeScript
import { GitzoneConfig } from '../gitzone.config.js';
import type { TGitzoneProjectType } from '../gitzone.config.js';
export declare class Project {
static fromCwd(): Promise<Project>;
gitzoneConfig: GitzoneConfig;
get type(): TGitzoneProjectType;
constructor(gitzoneConfigArg: GitzoneConfig);
}