From 3ec1bcaf9a128b98f1d9149570ca649d44fa7ef5 Mon Sep 17 00:00:00 2001 From: Kegan Myers Date: Fri, 25 Apr 2014 18:44:55 -0500 Subject: [PATCH] Add additional http methods --- lib/Typertext/Http/HttpMethod.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/Typertext/Http/HttpMethod.ts b/lib/Typertext/Http/HttpMethod.ts index 428c96d..4221c37 100644 --- a/lib/Typertext/Http/HttpMethod.ts +++ b/lib/Typertext/Http/HttpMethod.ts @@ -7,7 +7,12 @@ module Typertext.Http { * TODO figure out the proper annotations for enums */ export enum HttpMethod { + DELETE, GET, - POST + HEAD, + OPTIONS, + POST, + PUT, + TRACE } } \ No newline at end of file