# 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
// Type definitions for gulp-stylus 2.7
// Project: https://github.com/stevelacy/gulp-stylus
// Definitions by: DefinitelyTyped <https://github.com/DefinitelyTyped>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <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: Wed, 10 May 2023 21:03:36 GMT
 * Dependencies: [@types/node](https://npmjs.com/package/@types/node)
 * Global values: none

# Credits
These definitions were written by [DefinitelyTyped](https://github.com/DefinitelyTyped).
