Document HttpResponse

This commit is contained in:
Kegan Myers 2014-02-28 10:59:54 -06:00
parent 05b09e7d71
commit 6aa6cb8673
1 changed files with 19 additions and 0 deletions

View File

@ -1,5 +1,24 @@
/**
* @namespace Typertext
* @module Http
*/
module Typertext.Http {
export class HttpResponse extends Typertext.GenericResponse<string> {
/**
* A class for passing the response around as a raw string
*
* @class HttpResponse
* @extends GenericResponse
*
* @param {HttpResponseStatus} status
* @param {HttpHeaderData} responseHeaders
* @param {number} httpResponseCode
* @param {string} responseBody
*
* @author Kegan Myers <kegan@keganmyers.com>
* @version 0.3.0
* @constructor
*/
constructor(status:HttpResponseStatus, responseHeaders?:HttpHeaderData, httpResponseCode?:number, responseBody?:string) {
super(status, responseHeaders, httpResponseCode, responseBody);
}