peezy-cli
Version:
Production-ready CLI for scaffolding modern applications with curated full-stack templates, intelligent migrations, and enterprise security.
25 lines (24 loc) • 569 B
TypeScript
export interface AddOptions {
force?: boolean;
version?: string;
}
/**
* Add a remote template to the cache
*/
export declare function addTemplate(templateName: string, options?: AddOptions): Promise<void>;
/**
* List cached templates
*/
export declare function listCachedTemplates(): Promise<void>;
/**
* Clear template cache
*/
export declare function clearCache(): Promise<void>;
/**
* Get cache information for JSON output
*/
export declare function getCacheInfo(): Promise<{
size: number;
templates: number;
lastFetch: Date | null;
}>;