UNPKG

debt-collector

Version:

a nodejs tool to identify, track and mesure technical debt

18 lines (17 loc) 541 B
import zod from 'zod'; export declare const options: zod.ZodObject<{ config: zod.ZodOptional<zod.ZodString>; openReport: zod.ZodOptional<zod.ZodBoolean>; }, "strip", zod.ZodTypeAny, { config?: string | undefined; openReport?: boolean | undefined; }, { config?: string | undefined; openReport?: boolean | undefined; }>; export declare const alias = "w"; type Props = { options: zod.infer<typeof options>; }; declare const Walk: ({ options }: Props) => import("react/jsx-runtime").JSX.Element; export default Walk;