# SelectedTextCoordinates

## Content

# Type Alias: SelectedTextCoordinates

```ts
type SelectedTextCoordinates = object;
```

Coordinates of the selected text.

## Properties

### outerRect

```ts
outerRect: number[];
```

The outer rectangle bounding the selected text, represented as an array of numbers.

***

### pageIndex

```ts
pageIndex: number;
```

The index of the target page.

***

### quadPoints

```ts
quadPoints: object[][];
```

The coordinates of the selected regions, represented as an array of arrays of points.
Each point is an object with `x` and `y` properties.
