From ae5e62e5ee9d19fe6751e77fbb4aa0fe66c10068 Mon Sep 17 00:00:00 2001 From: SomaticIT Date: Mon, 15 Sep 2014 04:25:28 +0200 Subject: [PATCH] Fix some syntax issues --- stylus/stylus.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stylus/stylus.d.ts b/stylus/stylus.d.ts index b4c54b361..19531145b 100644 --- a/stylus/stylus.d.ts +++ b/stylus/stylus.d.ts @@ -60,7 +60,7 @@ interface StylusStatic { /** * Return a url() function with the given `options`. */ - resolver(options): StylusLiteralFunction; + resolver(options: any): StylusLiteralFunction; } //#region Internal Modules @@ -611,7 +611,7 @@ interface StylusUrl { } interface StylusMiddleware { - (req, res, next: Function): void; + (req: any, res: any, next: Function): void; } //#endregion