import type { TextUpdate } from "./TextUpdate"; /** * Payload for applying a list of targeted text updates to a task's description. */ export type TaskDescriptionUpdate = { /** * An ordered list of text updates to apply. Each one operates on the result of the previous one. Applied atomically — if any update fails, none are persisted. */ updates: Array; };