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

15 lines
360 B
C#
Executable File

namespace dotless.Core
{
using System.Collections.Generic;
using System;
public interface ILessEngine
{
string TransformToCss(string source, string fileName);
void ResetImports();
IEnumerable<string> GetImports();
bool LastTransformationSuccessful { get; }
string CurrentDirectory { get; set; }
}
}