# Installation
> `npm install --save @types/gulp-stylus`

# Summary
This package contains type definitions for gulp-stylus (https://github.com/stevelacy/gulp-stylus).

# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gulp-stylus.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/gulp-stylus/index.d.ts)
````ts
/// <reference types="node"/>

declare function gulpStylus(options?: gulpStylus.Options): NodeJS.ReadWriteStream;

declare namespace gulpStylus {
    interface VariableDefinitions {
        [variableName: string]: any;
    }
    interface Options {
        compress?: boolean | undefined;
        linenos?: boolean | undefined;
        "include css"?: boolean | undefined;
        rawDefine?: VariableDefinitions | undefined;
    }
}

export = gulpStylus;

````

### Additional Details
 * Last updated: Tue, 07 Nov 2023 03:09:37 GMT
 * Dependencies: [@types/node](https://npmjs.com/package/@types/node)

# Credits
These definitions were written by .
