From eb09e3f1d194ec9871fb3a2dc4ce684e64173e36 Mon Sep 17 00:00:00 2001 From: TokugawaTakesi Date: Fri, 12 Apr 2019 10:31:23 +0900 Subject: [PATCH] requested changes done --- types/gulp-stylus/index.d.ts | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/types/gulp-stylus/index.d.ts b/types/gulp-stylus/index.d.ts index 0466fec6b6..eb553ca315 100644 --- a/types/gulp-stylus/index.d.ts +++ b/types/gulp-stylus/index.d.ts @@ -5,11 +5,9 @@ /// -interface GulpStylus { - (options?: GulpStylus.Options): NodeJS.ReadWriteStream; -} +declare function gulpStylus(options?: gulpStylus.Options): NodeJS.ReadWriteStream; -declare namespace GulpStylus { +declare namespace gulpStylus { interface Options { compress?: boolean; linenos?: boolean; @@ -20,5 +18,4 @@ declare namespace GulpStylus { } } -declare var gulpStylus: GulpStylus; export = gulpStylus;