---
url: 'https://adk.nht.io/api/@nhtio/adk/batteries/sandbox/type-aliases/HitFrame.md'
description: >-
  Content-hit frames contain the whole matched line, followed by exactly one
  [`Done`](https://adk.nht.io/api/@nhtio/adk/batteries/sandbox/type-aliases/Done).
---

# Type Alias: HitFrame

```ts
type HitFrame =
  | {
      kind: "item";
      line: number;
      path: string;
      text: string;
    }
  | Done;
```

Defined in: [src/batteries/sandbox/types.ts:133](https://github.com/NHTIO/ADK/blob/v1.20260824.1/src/src/batteries/sandbox/types.ts#L133)

Content-hit frames contain the whole matched line, followed by exactly one [Done](Done.md).
