# server.Server.showResolvedOptions

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