Files
oh-my-opencode/dist/hooks/start-work/parse-user-request.d.ts
T

6 lines
190 B
TypeScript
Raw Normal View History

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