UNPKG

debt-collector

Version:

a nodejs tool to identify, track and mesure technical debt

20 lines (19 loc) 512 B
import type { CheckResults } from '../../lib/types.js'; type CheckOptions = { rule?: string; tags?: string[]; config?: string; include?: string; changedSince?: string; }; export declare function useCheckState(options: CheckOptions): { results: CheckResults | null; fileList: string[] | null; checkedFileCount: number; isConfigValid: boolean | null; configErrors: string[] | null; collectingFrom: string; hasFilters: boolean; withFilters: string; }; export {};