# session.Session.refreshed

- **Module:** session.Session
- **Package:** @libtmux/libtmux
- **Language:** TypeScript
- **Kind:** method
- **Source:** https://github.com/libtmux/libtmux-ts/blob/2cb93308200da38a26b59876618116850f110607/packages/libtmux/src/session.ts#L326
- **Page:** https://libtmux.org/reference/ts/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();
```
