UNPKG

964 BMarkdownView Raw
1# Installation
2> `npm install --save @types/gulp-less`
3
4# Summary
5This package contains type definitions for gulp-less (https://github.com/plus3network/gulp-less).
6
7# Details
8Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gulp-less.
9## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gulp-less/index.d.ts)
10````ts
11/// <reference types="node" />
12
13interface IOptions {
14 modifyVars?: {} | undefined;
15 paths?: string[] | undefined;
16 plugins?: any[] | undefined;
17 relativeUrls?: boolean | undefined;
18}
19
20declare function less(options?: IOptions): NodeJS.ReadWriteStream;
21
22declare namespace less {}
23
24export = less;
25
26````
27
28### Additional Details
29 * Last updated: Tue, 07 Nov 2023 03:09:37 GMT
30 * Dependencies: [@types/node](https://npmjs.com/package/@types/node)
31
32# Credits
33These definitions were written by [Keita Kagurazaka](https://github.com/k-kagurazaka).
34
\No newline at end of file