10 lines
212 B
C#
10 lines
212 B
C#
using RobotNet.WebApp.Scripts.Monaco;
|
|
|
|
namespace RobotNet.WebApp.Scripts.Monaco.Languages;
|
|
|
|
public struct CompletionItemRanges
|
|
{
|
|
public Range Intert { get; set; }
|
|
public Range Replace { get; set; }
|
|
}
|