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

6 lines
216 B
TypeScript

import { z } from "zod";
export declare const StartWorkConfigSchema: z.ZodObject<{
auto_commit: z.ZodDefault<z.ZodBoolean>;
}, z.core.$strip>;
export type StartWorkConfig = z.infer<typeof StartWorkConfigSchema>;