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

9 lines
381 B
TypeScript

import { z } from "zod";
export declare const SisyphusAgentConfigSchema: z.ZodObject<{
disabled: z.ZodOptional<z.ZodBoolean>;
default_builder_enabled: z.ZodOptional<z.ZodBoolean>;
planner_enabled: z.ZodOptional<z.ZodBoolean>;
replace_plan: z.ZodOptional<z.ZodBoolean>;
}, z.core.$strip>;
export type SisyphusAgentConfig = z.infer<typeof SisyphusAgentConfigSchema>;