Files
DefinitelyTyped/gulp-less/gulp-less.d.ts
2015-03-04 05:34:56 +00:00

19 lines
463 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 {
paths: string[];
plugins?: any[];
}
function less(options?: IOptions): NodeJS.ReadWriteStream;
export = less;
}