using Newtonsoft.Json; using Monaco.Helpers; namespace Monaco.Editor { /// /// https://microsoft.github.io/monaco-editor/api/interfaces/monaco.editor.iwordatposition.html /// [JsonConverter(typeof(InterfaceToClassConverter))] public interface IWordAtPosition { /// /// Column where the word ends. /// [JsonProperty("endColumn")] uint EndColumn { get; } /// /// Column where the word starts. /// [JsonProperty("startColumn")] uint StartColumn { get; } /// /// The word. /// [JsonProperty("word")] string Word { get; } } }