mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-18 05:05:14 +00:00
15 lines
458 B
C#
15 lines
458 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace Octokit.Reactive
|
|
{
|
|
public interface IObservableMiscellaneousClient
|
|
{
|
|
[SuppressMessage("Microsoft.Design", "CA1024:UsePropertiesWhereAppropriate",
|
|
Justification = "Makes a network request")]
|
|
IObservable<IReadOnlyDictionary<string, Uri>> GetEmojis();
|
|
IObservable<string> RenderRawMarkdown(string markdown);
|
|
}
|
|
}
|