mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-04-25 20:44:46 -07:00
feat: add 'blocked' status to tasks and todos (#22735)
This commit is contained in:
@@ -823,7 +823,12 @@ export type ToolResultDisplay =
|
||||
| TodoList
|
||||
| SubagentProgress;
|
||||
|
||||
export type TodoStatus = 'pending' | 'in_progress' | 'completed' | 'cancelled';
|
||||
export type TodoStatus =
|
||||
| 'pending'
|
||||
| 'in_progress'
|
||||
| 'completed'
|
||||
| 'cancelled'
|
||||
| 'blocked';
|
||||
|
||||
export interface Todo {
|
||||
description: string;
|
||||
|
||||
Reference in New Issue
Block a user