Files
oh-my-opencode/dist/config/schema/comment-checker.d.ts
T
2026-03-14 04:56:50 +00:00

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>;