An editor for Microsoft Adaptive Cards that supports the new templating language and DOESN'T use JavaScript, because JavaScript isn't a real programming language.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

11 lines
401 B

using Monaco.Editor;
using Windows.Foundation;
namespace Monaco.Languages
{
/// <summary>
/// https://microsoft.github.io/monaco-editor/api/interfaces/monaco.languages.hoverprovider.html
/// Simplify things here with a delegate vs. forcing to use a custom class instance.
/// </summary>
public delegate IAsyncOperation<Hover> HoverProvider(IModel model, IPosition position);
}