UNPKG

689 BTypeScriptView Raw
1// Type definitions for gulp-stylus 2.7
2// Project: https://github.com/stevelacy/gulp-stylus
3// Definitions by: DefinitelyTyped <https://github.com/DefinitelyTyped>
4// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
5
6/// <reference types="node"/>
7
8declare function gulpStylus(options?: gulpStylus.Options): NodeJS.ReadWriteStream;
9
10declare namespace gulpStylus {
11 interface VariableDefinitions {
12 [variableName: string]: any;
13 }
14 interface Options {
15 compress?: boolean | undefined;
16 linenos?: boolean | undefined;
17 'include css'?: boolean | undefined;
18 rawDefine?: VariableDefinitions | undefined;
19 }
20}
21
22export = gulpStylus;