(cline?: Task, todos?: TodoItem[])
| 146 | } |
| 147 | |
| 148 | export async function setTodoListForTask(cline?: Task, todos?: TodoItem[]) { |
| 149 | if (cline === undefined) return |
| 150 | cline.todoList = Array.isArray(todos) ? todos : [] |
| 151 | } |
| 152 | |
| 153 | export function restoreTodoListForTask(cline: Task, todoList?: TodoItem[]) { |
| 154 | if (todoList) { |