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