# ClientStorage.keys
Gets all storage keys for this plugin.

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

## ClientStorage.keys() method

Gets all storage keys for this plugin.

**Signature:**

```typescript
keys(): Promise<string[]>;
```

**Returns:**

Promise\<string\[]>

A promise that resolves to an array of all keys

## Example

```ts
const keys = await creator.clientStorage.keys();
```
