10 lines
294 B
C#
10 lines
294 B
C#
namespace RobotNet.WebApp.Scripts.Monaco.Languages;
|
|
|
|
public struct SignatureInformation
|
|
{
|
|
public int? ActiveParameter { get; set; }
|
|
public MarkdownString? Documentation { get; set; }
|
|
public string Label { get; set; }
|
|
public ParameterInformation[] Parameters { get; set; }
|
|
}
|