From 29ebb788d04c3acbb521ac1e69754a4bad9c5885 Mon Sep 17 00:00:00 2001 From: Simon Krajewski Date: Tue, 10 Mar 2015 10:04:00 +0100 Subject: [PATCH] replace nbsp by normal spaces --- express/express.d.ts | 12 ++++++------ handlebars/handlebars.d.ts | 8 ++++---- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/express/express.d.ts b/express/express.d.ts index 043c1e49c..e31332077 100644 --- a/express/express.d.ts +++ b/express/express.d.ts @@ -424,22 +424,22 @@ declare module "express" { * @param code */ status(code: number): Response; - + /** * Set the response HTTP status code to `statusCode` and send its string representation as the response body. * @link http://expressjs.com/4x/api.html#res.sendStatus - * + * * Examples: - * + * * res.sendStatus(200); // equivalent to res.status(200).send('OK') * res.sendStatus(403); // equivalent to res.status(403).send('Forbidden') * res.sendStatus(404); // equivalent to res.status(404).send('Not Found') * res.sendStatus(500); // equivalent to res.status(500).send('Internal Server Error') - * + * * @param code */ sendStatus(code: number): Response; - + /** * Set Link header field with the given `links`. * @@ -796,7 +796,7 @@ declare module "express" { (req: Request, res: Response, next: Function): any; } - interface Handler extends RequestHandler {} + interface Handler extends RequestHandler {} interface RequestParamHandler { (req: Request, res: Response, next: Function, param: any): any; diff --git a/handlebars/handlebars.d.ts b/handlebars/handlebars.d.ts index 076381571..c118760c5 100644 --- a/handlebars/handlebars.d.ts +++ b/handlebars/handlebars.d.ts @@ -38,13 +38,13 @@ interface HandlebarsStatic extends HandlebarsCommon { compile(input: any, options?: any): HandlebarsTemplateDelegate; } -interface HandlebarsTemplates { - [index: string]: HandlebarsTemplateDelegate; +interface HandlebarsTemplates { + [index: string]: HandlebarsTemplateDelegate; } -interface HandlebarsRuntimeStatic extends HandlebarsCommon { +interface HandlebarsRuntimeStatic extends HandlebarsCommon { // Handlebars.templates is the default template namespace in precompiler. - templates: HandlebarsTemplates; + templates: HandlebarsTemplates; } declare module hbs {