# `TextChunker.Chunk`
[🔗](https://github.com/revelrylabs/text_chunker_ex/blob/main/lib/text_chunker/chunk.ex#L1)

Defines the `Chunk` struct, representing a contiguous block of text extracted during the splitting process. It stores the text content along with its corresponding byte range within the original input text.

# `t`

```elixir
@type t() :: %TextChunker.Chunk{
  end_byte: non_neg_integer(),
  start_byte: non_neg_integer(),
  text: String.t()
}
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
