# session.Session.refreshed

- **Module:** session.Session
- **Package:** libtmux
- **Language:** TypeScript
- **Kind:** method
- **Source:** https://github.com/libtmux/libtmux-ts/blob/3fe1ca654b81b8cbf4a13b777a001a3298c87a6f/packages/libtmux/src/session.ts#L333
- **Page:** https://libtmux.org/en/ts/latest/reference/session-session-refreshed/

```
session.Session.refreshed() -> Promise<Session>
```

This session, read again at a new instant.

The receiver keeps the instant it was read at; the answer is a new handle
on a new snapshot, so neither reading contradicts itself.

## Example

```ts
const later = await session.refreshed();
later.windows.count();
```
