/** * GitHub repository license */ export interface GithubLicense { /** * License key */ key: string; /** * License name */ name: string; /** * License SPDX ID */ spdx_id: string; /** * License URL */ url: string; }