12 lines
249 B
C#
Executable File
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();
|
|
}
|
|
}
|