> ## Documentation Index
> Fetch the complete documentation index at: https://docs.assistantscenter.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Storage

> An Object which contains all the information for the storage.

```js theme={null}
theme: SoftUI({
  storage: Object<DBD.Handler>,
});
```

See more about [storage handlers](/essentials/storage-handlers.mdx)

## Example Usage

```js theme={null}
theme: SoftUI({
  storage: Handler,
});
```

## Props

<ParamField path="storage" type="object DBD.Handler" required>
  The storage handler
</ParamField>
