# window.Window.showResolvedOptions

- **Module:** window.Window
- **Package:** @libtmux/libtmux
- **Language:** TypeScript
- **Kind:** method
- **Source:** https://github.com/libtmux/libtmux-ts/blob/2cb93308200da38a26b59876618116850f110607/packages/libtmux/src/window.ts#L220
- **Page:** https://libtmux.org/reference/ts/window-window-showresolvedoptions/

```
window.Window.showResolvedOptions() -> Promise<ReadonlyMap<string, string>>
```

The option values that govern this window, own and inherited together.

`showOptions` reports only what was set here, which for a fresh window is
often nothing. This resolves what it inherits as well, so an option has an
answer wherever it was actually set.

## Example

```ts
(await window.showResolvedOptions()).get("main-pane-width");
```
