UNPKG

535 BTypeScriptView Raw
1// Type definitions for gulp-less
2// Project: https://github.com/plus3network/gulp-less
3// Definitions by: Keita Kagurazaka <https://github.com/k-kagurazaka>
4// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
5
6/// <reference types="node" />
7
8
9
10interface IOptions {
11 modifyVars?: {} | undefined;
12 paths?: string[] | undefined;
13 plugins?: any[] | undefined;
14 relativeUrls?: boolean | undefined;
15}
16
17declare function less(options?: IOptions): NodeJS.ReadWriteStream;
18
19declare namespace less { }
20
21export = less;