UNPKG

peezy-cli

Version:

Production-ready CLI for scaffolding modern applications with curated full-stack templates, intelligent migrations, and enterprise security.

13 lines (12 loc) 285 B
export type DoctorOptions = { fixLint?: boolean; fixEnvExamples?: boolean; ports?: number[]; json?: boolean; }; export declare function doctor(opts?: DoctorOptions): Promise<number | { ok: boolean; errors: string[]; warnings: string[]; checks: any; }>;