import type { BuildDetails } from '../schemas/BuildDetails'; /** * Response containing list of GitHub package versions */ export interface GithubPackageVersionsResponse { /** * List of package versions */ versions?: BuildDetails[]; }