Files
DefinitelyTyped/gulp-less/gulp-less.d.ts
Thomas Corbière 92ce54989d [gulp-less] Update the definition of IOptions
Add "modifyVars"
Make "paths" optional
2015-08-18 19:26:06 +02:00

20 lines
489 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/borisyankov/DefinitelyTyped
/// <reference path="../node/node.d.ts" />
declare module "gulp-less" {
interface IOptions {
modifyVars?: {};
paths?: string[];
plugins?: any[];
}
function less(options?: IOptions): NodeJS.ReadWriteStream;
export = less;
}