mirror of
https://github.com/actions/runner.git
synced 2026-01-15 16:03:28 +08:00
GitHub Actions Runner
This commit is contained in:
15
src/Sdk/DTExpressions2/Expressions2/IFunctionInfo.cs
Normal file
15
src/Sdk/DTExpressions2/Expressions2/IFunctionInfo.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user