# UserJourneyAnalysisResult

**Kind:** Interface

**Source:** [`atloria-monorepo/libs/parser-core/src/interfaces/user-journey.interface.ts`](https://github.com/sherkety/atloria/blob/main/atloria-monorepo/libs/parser-core/src/interfaces/user-journey.interface.ts#L181)

Result of analyzing a component for user journeys

## Properties

| Property | Type |
|---|---|
| `source` | `string` |
| `framework` | `'angular' | 'react' | 'vue'` |
| `flows` | `UserJourneyFlow[]` |
| `errors` | `string[]` |
| `warnings` | `string[]` |
| `metadata` | `{
    /** Duration in milliseconds */
    duration: number;

    /** Number of flows found */
    flowCount: number;

    /** Number of nodes across all flows */
    totalNodeCount: number;

    /** Number of edges across all flows */
    totalEdgeCount: number;

    [key: string]: any;
  }` |
