Files
oh-my-opencode/dist/hooks/todo-continuation-enforcer/pending-question-detection.d.ts
T
2026-03-14 04:56:50 +00:00

15 lines
285 B
TypeScript

interface MessagePart {
type: string;
name?: string;
toolName?: string;
}
interface Message {
info?: {
role?: string;
};
role?: string;
parts?: MessagePart[];
}
export declare function hasUnansweredQuestion(messages: Message[]): boolean;
export {};