---
name: "offEnhanceClarityProgress"
mode: "kit"
versionRequirements:
  - { name: "AIKit", version: "1.4.1" }
  - { name: "@ray-js/ray", version: "1.7.37" }
platform:
  - "iOS"
  - "Android"
async: true
title: "offEnhanceClarityProgress"
---

## offEnhanceClarityProgress

> [VERSION] AIKit >= 1.4.1 | @ray-js/ray >= 1.7.37

> [PLATFORM] iOS, Android

> ⚡ **Supports Promise** — Returns a Promise when success / fail / complete callbacks are omitted.

### Description

Image clarity enhancement progress

### Parameters

`(listener: Function)`

| Parameter | Type | Required | Default | Description |
| --- | --- | --- | --- | --- |
| `listener` | `(params: EnhanceProgressEvent) => void` | Yes | - |  |

### Referenced Types

##### `interface` EnhanceProgressEvent

| Property | Type | Since | Description |
| --- | --- | --- | --- |
| `progress` | `number` | `1.4.1` | Processing progress 1-100 |


### Examples

#### Basic usage

```tsx
import { ai } from '@ray-js/ray'

const { offEnhanceClarityProgress } = ai;

offEnhanceClarityProgress((result) => {
  console.log('offEnhanceClarityProgress', result);
});
```
