/** * Download types */ type DownloadSourceType = 'git' | 'github' | 'gitlab' | 'npm'; /** * Type in other objects */ interface DownloadSourceMixin { downloadType: T; } export { DownloadSourceMixin, DownloadSourceType };