# ClientStorage.usedQuota
Gets the current data quota usage (in bytes) for this plugin.

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

## ClientStorage.usedQuota() method

Gets the current data quota usage (in bytes) for this plugin.

**Signature:**

```typescript
usedQuota(): Promise<number>;
```

**Returns:**

Promise\<number>

A promise that resolves to the number of bytes used

## Example

```ts
const usedBytes = await creator.clientStorage.usedQuota();
```
