# server.Server.showResolvedOptions

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

```
server.Server.showResolvedOptions() -> Promise<ReadonlyMap<string, string>>
```

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

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

## Example

```ts
(await server.showResolvedOptions()).get("message-limit");
```
