public async Task SetDeltaDecoration(IEnumerable <ModelDeltaDecoration> deltaDecorations)
 {
     DeltaDecorations = await DeltaDecorationHelper.SetDeltaDecorations(MonacoEditor, DeltaDecorations, deltaDecorations.ToArray());
 }
 public async Task ResetDeltaDecorations()
 {
     DeltaDecorations = await DeltaDecorationHelper.ResetDeltaDecorations(MonacoEditor);
 }
 public async Task <ModelDeltaDecoration> BuildDeltaDecoration(BlazorMonaco.Bridge.Range range, string message)
 {
     return(await DeltaDecorationHelper.BuildDeltaDecoration(MonacoEditor, range, message));
 }