# RouteMapEntry

**Kind:** Interface

**Source:** [`atloria-monorepo/packages/doc-automation/src/v2/stages/stage-12-screenshots/screenshot-worker.types.ts`](https://github.com/sherkety/atloria/blob/main/atloria-monorepo/packages/doc-automation/src/v2/stages/stage-12-screenshots/screenshot-worker.types.ts#L141)

Route mapping entry for AI-assisted screenshot capture
Maps URL paths to their component/template files and extracted selectors

## Properties

| Property | Type |
|---|---|
| `componentFile` | `string` |
| `templateFile` | `string` |
| `selectors` | `{
    buttons?: Array<{ selector: string; text?: string }>;
    inputs?: Array<{ selector: string }>;
    links?: Array<{ selector: string; text?: string }>;
    modals?: Array<{ selector: string }>;
    tables?: Array<{ selector: string }>;
    forms?: Array<{ selector: string }>;
  }` |
| `requiredAuth` | `boolean` |
