# session.Session.showOptions

- **Module:** session.Session
- **Package:** @libtmux/libtmux
- **Language:** TypeScript
- **Kind:** method
- **Source:** https://github.com/libtmux/libtmux-ts/blob/2cb93308200da38a26b59876618116850f110607/packages/libtmux/src/session.ts#L103
- **Page:** https://libtmux.org/reference/ts/session-session-showoptions/

```
session.Session.showOptions() -> Promise<ReadonlyMap<string, string>>
```

Every option set on this session itself, not the ones it inherits.

A fresh session usually has none, so an empty map here means nothing was
set on this session — not that the option has no value. `showResolvedOptions`
answers what actually governs it.

## Example

```ts
const options = await session.showOptions();
options.get("status");
```
