Files
oh-my-opencode/dist/hooks/start-work/parse-user-request.d.ts
T
2026-03-14 04:56:50 +00:00

6 lines
190 B
TypeScript

export interface ParsedUserRequest {
planName: string | null;
explicitWorktreePath: string | null;
}
export declare function parseUserRequest(promptText: string): ParsedUserRequest;