using System; using System.Collections.Generic; namespace Octokit.Reactive { public interface IObservableStatisticsClient { /// /// Returns a list of for the given repository /// /// The owner of the repository /// The name of the repository /// A list of IObservable> GetContributors(string owner, string repositoryName); } }