# TextZonesUnit

The `TextZonesUnit` interface extends the `IntermediateResultUnit` interface and represents a unit of text zones identified during the processing of an image. This interface is used to encapsulate the locations of detected text areas within an image, providing a structured representation of where text is located.

```typescript
interface TextZonesUnit extends IntermediateResultUnit {
    textZones: Array<TextZone>;
}
```

## textZones

An array of `TextZone` objects, each representing the geometric boundaries of a detected text zone within the image.

**See Also**

[TextZone](https://www.dynamsoft.com/capture-vision/docs/web/programming/javascript/api-reference/core/basic-structures/text-zone.md)
