/** * Lint wrapper command * * Runs deno lint and transforms output to structured JSON. * * @module cli/commands/lint */ export interface LintDiagnostic { file: string; line: number; col: number; code: string; message: string; } export interface LintResult { success: boolean; diagnostics: LintDiagnostic[]; summary: { total: number; files_checked: number; }; } export declare function parseLintJsonOutput(output: string, exitCode: number): LintResult; //# sourceMappingURL=command.d.ts.map