diff --git a/types/gulp-stylus/index.d.ts b/types/gulp-stylus/index.d.ts index eb553ca315..6a151187fb 100644 --- a/types/gulp-stylus/index.d.ts +++ b/types/gulp-stylus/index.d.ts @@ -8,13 +8,14 @@ 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?: { - data: any - }; + rawDefine?: VariableDefinitions; } }