# types.PlannedOperation

- **Module:** types
- **Package:** @libtmux/libtmux
- **Language:** TypeScript
- **Kind:** interface
- **Source:** https://github.com/libtmux/libtmux-ts/blob/2cb93308200da38a26b59876618116850f110607/packages/libtmux/src/types.ts#L937
- **Page:** https://libtmux.org/reference/ts/types-plannedoperation/

A tmux command that has been described but not run.

Every mutation here is two separable halves: the arguments, which are decided
from the options alone, and finding what they produced, which needs a
snapshot. Keeping them apart lets many mutations share one final snapshot
instead of taking one after every command.

The type parameter is what the command resolves to, so a batch of mixed
operations still comes back typed one by one.

## Members

- `argv` (property)
- `resolve` (property) — What `argv` produced, read out of a snapshot taken after it ran.
