diff --git a/lib/Typertext/Http/HttpResponse.ts b/lib/Typertext/Http/HttpResponse.ts index 38b0940..177abcc 100644 --- a/lib/Typertext/Http/HttpResponse.ts +++ b/lib/Typertext/Http/HttpResponse.ts @@ -1,5 +1,24 @@ +/** + * @namespace Typertext + * @module Http + */ module Typertext.Http { export class HttpResponse extends Typertext.GenericResponse { + /** + * 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 + * @version 0.3.0 + * @constructor + */ constructor(status:HttpResponseStatus, responseHeaders?:HttpHeaderData, httpResponseCode?:number, responseBody?:string) { super(status, responseHeaders, httpResponseCode, responseBody); }