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

12 lines
393 B
TypeScript

import { z } from "zod";
export declare const BuiltinCommandNameSchema: z.ZodEnum<{
"init-deep": "init-deep";
"ralph-loop": "ralph-loop";
"ulw-loop": "ulw-loop";
"cancel-ralph": "cancel-ralph";
refactor: "refactor";
"start-work": "start-work";
"stop-continuation": "stop-continuation";
}>;
export type BuiltinCommandName = z.infer<typeof BuiltinCommandNameSchema>;