UNPKG

@slimio/psp

Version:

Analyze compliance with the structural policy of a SlimIO project

19 lines (15 loc) 340 B
declare namespace psp { interface result { crit: number; warn: number; } interface options { forceMode?: boolean; CWD?: string; isCLI?: boolean; verbose?: boolean; } } declare function psp(options?: psp.options): Promise<psp.result>; export = psp; export as namespace psp;