ant-design-blazor/site/AntDesign.Docs/Highlight/IPrismHighlighter.cs

12 lines
275 B
C#
Raw Normal View History

using System.Threading.Tasks;
using Microsoft.AspNetCore.Components;
namespace AntDesign.Docs.Highlight
{
public interface IPrismHighlighter
{
ValueTask<MarkupString> HighlightAsync(string code, string language);
Task HighlightAllAsync();
}
}