2023-10-31 11:47:27 -04:00

12 lines
249 B
C#
Executable File

namespace dotless.Core.Plugins
{
using System;
using System.Collections.Generic;
using dotless.Core.Parser.Infrastructure;
public interface IFunctionPlugin : IPlugin
{
Dictionary<string, Type> GetFunctions();
}
}