6 lines
233 B
TypeScript
6 lines
233 B
TypeScript
import { z } from "zod";
|
|
export declare const CommentCheckerConfigSchema: z.ZodObject<{
|
|
custom_prompt: z.ZodOptional<z.ZodString>;
|
|
}, z.core.$strip>;
|
|
export type CommentCheckerConfig = z.infer<typeof CommentCheckerConfigSchema>;
|