Add additional http methods

This commit is contained in:
Kegan Myers 2014-04-25 18:44:55 -05:00
parent 0a0645518c
commit 3ec1bcaf9a
1 changed files with 6 additions and 1 deletions

View File

@ -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
}
}