# ActionTarget

## Content

# Type Alias: ActionTarget

```ts
type ActionTarget = 
  | {
  pageNumber: number;
  selector?: string;
}
  | string;
```

Target of an action.
