# types.PlannedOperation

- **Module:** types
- **Package:** libtmux
- **Language:** TypeScript
- **Kind:** interface
- **Source:** https://github.com/libtmux/libtmux-ts/blob/3fe1ca654b81b8cbf4a13b777a001a3298c87a6f/packages/libtmux/src/types.ts#L997
- **Page:** https://libtmux.org/en/ts/latest/reference/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.
