# PluginData.delete
Deletes the value for a specific key

{/* Do not edit this file. It is automatically generated by API Documenter. */}

## PluginData.delete() method

Deletes the value for a specific key

**Signature:**

```typescript
delete(key: string): void;
```

## Parameters

<table>
  <thead>
    <tr>
      <th>
        Parameter
      </th>

      <th>
        Type
      </th>

      <th>
        Description
      </th>
    </tr>
  </thead>

  <tbody>
    <tr>
      <td>
        key
      </td>

      <td>
        string
      </td>

      <td>
        The key to delete
      </td>
    </tr>
  </tbody>
</table>

**Returns:**

void

## Example

```ts
node.data.delete("storedColors");
```
