From 92d2e42c07696c80961984ec7327a9bec660b01d Mon Sep 17 00:00:00 2001 From: Rene Eichhorn Date: Mon, 22 Jun 2015 19:57:04 +0200 Subject: [PATCH] added continue for hapi IReply --- hapi/hapi.d.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/hapi/hapi.d.ts b/hapi/hapi.d.ts index de8dba6b8b..8d3da2620b 100644 --- a/hapi/hapi.d.ts +++ b/hapi/hapi.d.ts @@ -241,10 +241,9 @@ declare module "hapi" { /** Note that if result is a Stream with a statusCode property, that status code will be used as the default response code. */ (result: string|number|boolean|Buffer|stream.Stream | Promise | T): Response; - //////// Returns control back to the framework without setting a response. If called in the handler, the response defaults to an empty payload with status code 200. - ////// - ////// The data argument is only used for passing back authentication data and is ignored elsewhere. - ////////continue(credentialData?: any): void; + /** Returns control back to the framework without setting a response. If called in the handler, the response defaults to an empty payload with status code 200. + * The data argument is only used for passing back authentication data and is ignored elsewhere. */ + continue(credentialData?: any): void; /** Transmits a file from the file system. The 'Content-Type' header defaults to the matching mime type based on filename extension. The response flow control rules do not apply. */ file(