# ClientStorage.clear
Clears all client storage data for this plugin.

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

## ClientStorage.clear() method

Clears all client storage data for this plugin.

**Signature:**

```typescript
clear(): Promise<void>;
```

**Returns:**

Promise\<void>

A promise that resolves when all data is cleared

## Remarks

This removes ALL keys and values stored by your plugin. This operation cannot be undone.

## Example

```ts
await creator.clientStorage.clear();
```
