9 lines
237 B
C#
9 lines
237 B
C#
namespace RobotNet.WebApp.Scripts.Monaco.Languages;
|
|
|
|
public struct SignatureHelp
|
|
{
|
|
public int ActiveParameter { get; set; }
|
|
public int ActiveSignature { get; set; }
|
|
public SignatureInformation[] Signatures { get; set; }
|
|
}
|