Files
DefinitelyTyped/gulp-less/gulp-less.d.ts
Long Yinan 45e50efb7c fix import
2015-12-30 19:29:44 +08:00

22 lines
512 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;
namespace less {}
export = less;
}