One or more items in a todo list were completed or uncompleted

interface ActionTodoCompletions {
    completed: number[];
    type: "todo_completions";
    uncompleted: number[];
}

Properties

completed: number[]

IDs of items that were marked as completed

type: "todo_completions"
uncompleted: number[]

IDs of items that were marked as non-completed