mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 04:49:15 +08:00
20 lines
489 B
TypeScript
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;
|
|
}
|