mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
23 lines
639 B
TypeScript
23 lines
639 B
TypeScript
// Type definitions for gulp-stylus 2.7
|
|
// Project: http://github.com/stevelacy/gulp-stylus
|
|
// Definitions by: Takesi Tokugawa <https://github.com/TokugawaTakesi>
|
|
// 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;
|
|
linenos?: boolean;
|
|
'include css'?: boolean;
|
|
rawDefine?: VariableDefinitions;
|
|
}
|
|
}
|
|
|
|
export = gulpStylus;
|