# ComponentServiceDependency

**Kind:** Interface

**Source:** [`atloria-monorepo/packages/doc-automation/src/v2/types/cross-language.types.ts`](https://github.com/sherkety/atloria/blob/main/atloria-monorepo/packages/doc-automation/src/v2/types/cross-language.types.ts#L102)

Component-to-Service dependency tracking

Tracks which components use which services to build user journey maps.

## Properties

| Property | Type |
|---|---|
| `componentFile` | `string` |
| `componentName` | `string` |
| `injectedServices` | `Array<{
    serviceName: string;
    serviceFile: string;
    methodsCalled: string[]; // Which service methods this component calls
  }>` |
