import type { GithubPackage } from '../schemas/GithubPackage'; /** * Response containing list of GitHub packages */ export interface GithubPackagesResponse { /** * List of GitHub packages */ githubPackageResponse?: GithubPackage[]; }