# IDataListInstanceProps

## Definition

```tsx
interface IDataListInstanceProps {
    updateItem: (key: number, item: any) => void,
    removeItem: (key: number) => void
}
```

## Usage

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