15 lines
360 B
C#
Executable File
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; }
|
|
}
|
|
} |