# Action

Union type for an action, either a BaseAction or an ActionWithChildren.

## Definition

```tsx
export type Action = BaseAction | ActionWithChildren;
```

## Usage

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