UNPKG

@pagopa/dx-cli

Version:

A CLI useful to manage DX tools.

11 lines (10 loc) 446 B
import { Config } from "../config.js"; import { Dependencies } from "./dependencies.js"; import { ValidationCheck } from "./validation.js"; type DoctorResult = { checks: ValidationCheck[]; hasErrors: boolean; }; export declare const runDoctor: (dependencies: Dependencies, config: Config) => Promise<DoctorResult>; export declare const printDoctorResult: ({ validationReporter }: Dependencies, result: DoctorResult) => void[]; export {};