UNPKG

debt-collector

Version:

a nodejs tool to identify, track and mesure technical debt

11 lines (10 loc) 240 B
import { UserConfig } from '../types.js'; export declare const loadConfig: (configPath: string) => Promise<{ isSuccess: true; config: UserConfig; error: null; } | { isSuccess: false; config: null; error: string; }>;