import { GitHubAction } from './github-action'; /** * Result of scanning a repository for GitHub Actions usage. */ export interface ScanResult { /** * Map of workflow files to their used GitHub Actions. */ workflows: Map /** * Map of composite action names to their file paths. */ compositeActions: Map /** * List of all unique GitHub Actions found in the repository. */ actions: GitHubAction[] }