# FrameValue

`import { FrameValue } from "destack:runtime";`

Runtime frame slot value.

```ds title="FrameValue"
export struct FrameValue {
    slot: FrameSlotId;
    bytes: [uint8];
}
```

[language/library/src/runtime/frame.ds:64:69](https://github.com/destack-sh/destack/blob/main/language/library/src/runtime/frame.ds#L64-L69)

## Members

### `slot: FrameSlotId`

Slot identifier.

### `bytes: [uint8]`

Encoded value bytes.
