# ActionResponse

## Definition

```tsx
interface ActionResponse {
    status: 'done' | 'error' | 'no-change',
    message?: string,
    data?: any
}
```

## Usage

```tsx
import { ActionResponse } from 'uxp/components';
```
