mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-05 23:06:10 +00:00
20 lines
642 B
C#
20 lines
642 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Octokit.Reactive
|
|
{
|
|
/// <summary>
|
|
/// A client for GitHub's Codespaces API.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// See the codespaces API documentation for more information.
|
|
/// </remarks>
|
|
public interface IObservableCodespacesClient
|
|
{
|
|
IObservable<CodespacesCollection> GetAll();
|
|
IObservable<CodespacesCollection> GetForRepository(string owner, string repo);
|
|
IObservable<Codespace> Get(string codespaceName);
|
|
IObservable<Codespace> Start(string codespaceName);
|
|
IObservable<Codespace> Stop(string codespaceName);
|
|
}
|
|
} |