UNPKG

306 BTypeScriptView Raw
1/// <reference types="node" />
2
3interface IOptions {
4 modifyVars?: {} | undefined;
5 paths?: string[] | undefined;
6 plugins?: any[] | undefined;
7 relativeUrls?: boolean | undefined;
8}
9
10declare function less(options?: IOptions): NodeJS.ReadWriteStream;
11
12declare namespace less {}
13
14export = less;