UNPKG

@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) 452 B
import * as plugins from './mod.plugins.js'; export declare const getTemplatePath: (templateNameArg: string) => string; /** * receives a template name and returns wether there is a corresponding template */ export declare const isTemplate: (templateNameArg: string) => Promise<boolean>; export declare const getTemplate: (templateNameArg: string) => Promise<plugins.smartscaf.ScafTemplate>; export declare const run: (argvArg: any) => Promise<void>;