mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-20 06:05:12 +00:00
16 lines
577 B
C#
16 lines
577 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Octokit.Reactive
|
|
{
|
|
public interface IObservableStatisticsClient
|
|
{
|
|
/// <summary>
|
|
/// Returns a list of <see cref="Contributor"/> for the given repository
|
|
/// </summary>
|
|
/// <param name="owner">The owner of the repository</param>
|
|
/// <param name="repositoryName">The name of the repository</param>
|
|
/// <returns>A list of <see cref="Contributor"/></returns>
|
|
IObservable<IEnumerable<Contributor>> GetContributors(string owner, string repositoryName);
|
|
}
|
|
} |