mirror of
https://github.com/actions/runner.git
synced 2025-12-10 20:36:49 +00:00
13 lines
274 B
C#
13 lines
274 B
C#
using System;
|
|
using GitHub.Actions.Expressions.Sdk;
|
|
|
|
namespace GitHub.Actions.Expressions
|
|
{
|
|
public interface IFunctionInfo
|
|
{
|
|
String Name { get; }
|
|
Int32 MinParameters { get; }
|
|
Int32 MaxParameters { get; }
|
|
Function CreateNode();
|
|
}
|
|
} |