// Type definitions for gulp-less // Project: https://github.com/plus3network/gulp-less // Definitions by: Keita Kagurazaka // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// interface IOptions { modifyVars?: {} | undefined; paths?: string[] | undefined; plugins?: any[] | undefined; relativeUrls?: boolean | undefined; } declare function less(options?: IOptions): NodeJS.ReadWriteStream; declare namespace less { } export = less;