mirror of
https://github.com/actions/runner.git
synced 2026-01-13 14:41:14 +08:00
16 lines
375 B
C#
16 lines
375 B
C#
using System;
|
|
using System.ComponentModel;
|
|
using GitHub.DistributedTask.Expressions2.Sdk;
|
|
|
|
namespace GitHub.DistributedTask.Expressions2
|
|
{
|
|
[EditorBrowsable(EditorBrowsableState.Never)]
|
|
public interface IFunctionInfo
|
|
{
|
|
String Name { get; }
|
|
Int32 MinParameters { get; }
|
|
Int32 MaxParameters { get; }
|
|
Function CreateNode();
|
|
}
|
|
}
|