UNPKG

sdc-check

Version:

Small tool to inform you about potential risks in your project dependencies list

17 lines (13 loc) 530 B
import { OptionValues } from 'commander' import { SdcCheckMetric } from '..' export declare function printErrorsInfo( reportedItems: { metric: SdcCheckMetric; package: string; message: string }[], cliOptions: OptionValues ): void export declare function printWarningsInfo( reportedItems: { metric: SdcCheckMetric; package: string; message: string }[], cliOptions: OptionValues ): void export declare function getReportStatsInfo( reportedItems: { metric: SdcCheckMetric; package: string; message: string }[] ): string