DefinitelyTyped/types/gulp-less/index.d.ts
2017-03-24 14:27:52 -07:00

22 lines
487 B
TypeScript

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