debt-collector
Version:
a nodejs tool to identify, track and mesure technical debt
33 lines (32 loc) • 1.12 kB
TypeScript
import zod from 'zod';
export declare const options: zod.ZodObject<{
rule: zod.ZodOptional<zod.ZodString>;
tags: zod.ZodOptional<zod.ZodArray<zod.ZodString, "many">>;
config: zod.ZodOptional<zod.ZodString>;
include: zod.ZodOptional<zod.ZodString>;
htmlReport: zod.ZodDefault<zod.ZodBoolean>;
commonAncestor: zod.ZodDefault<zod.ZodBoolean>;
revision: zod.ZodOptional<zod.ZodString>;
}, "strip", zod.ZodTypeAny, {
commonAncestor: boolean;
htmlReport: boolean;
config?: string | undefined;
include?: string | undefined;
rule?: string | undefined;
tags?: string[] | undefined;
revision?: string | undefined;
}, {
config?: string | undefined;
commonAncestor?: boolean | undefined;
include?: string | undefined;
rule?: string | undefined;
tags?: string[] | undefined;
revision?: string | undefined;
htmlReport?: boolean | undefined;
}>;
type Props = {
options: zod.infer<typeof options>;
};
export declare const alias = "co";
declare function Compare({ options }: Props): import("react/jsx-runtime").JSX.Element;
export default Compare;