using System.Threading; using System.Threading.Tasks; using TwitchArchive.Core.Api; namespace TwitchArchive.Core.Services { public interface IDownloaderService { Task DownloadVodAsync(VodInfo vod, string outputPath, CancellationToken ct = default); Task DownloadChatJsonAsync(string vodId, string jsonPath, CancellationToken ct = default); } }