---
name: "SmartStorageAbility.remove"
mode: "api"
versionRequirements:
  - { name: "@ray-js/panel-sdk", version: "1.0.0" }
title: "remove"
---

## SmartStorageAbility.remove

> [VERSION] @ray-js/panel-sdk >= 1.0.0

### Description

Delete the stored data for the specified key

### Parameters

`Params`

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `key` | `string` | Yes | Storage key to delete |

### Return Value

Type: `Promise<unknown>`

Deletion result

### Examples

#### Example

```typescript
await sdm.storage.remove('brightness');
```
