debt-collector
Version:
a nodejs tool to identify, track and mesure technical debt
21 lines (20 loc) • 668 B
TypeScript
import zod from 'zod';
export declare const options: zod.ZodObject<{
config: zod.ZodOptional<zod.ZodString>;
include: zod.ZodOptional<zod.ZodString>;
openReport: zod.ZodOptional<zod.ZodBoolean>;
}, "strip", zod.ZodTypeAny, {
config?: string | undefined;
include?: string | undefined;
openReport?: boolean | undefined;
}, {
config?: string | undefined;
include?: string | undefined;
openReport?: boolean | undefined;
}>;
export declare const alias = "wdr";
type Props = {
options: zod.infer<typeof options>;
};
declare const WalkDryRun: ({ options }: Props) => import("react/jsx-runtime").JSX.Element;
export default WalkDryRun;