Fix some syntax issues

This commit is contained in:
SomaticIT
2014-09-15 04:25:28 +02:00
parent 760bacb86c
commit ae5e62e5ee
+2 -2
View File
@@ -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