# window.Window.showResolvedOptions

- **Module:** window.Window
- **Package:** libtmux
- **Language:** TypeScript
- **Kind:** method
- **Source:** https://github.com/libtmux/libtmux-ts/blob/3fe1ca654b81b8cbf4a13b777a001a3298c87a6f/packages/libtmux/src/window.ts#L235
- **Page:** https://libtmux.org/en/ts/latest/reference/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");
```
