From cf906199f3e29aeb24ad4184255887e7f0c48855 Mon Sep 17 00:00:00 2001 From: Netanel Basal Date: Tue, 17 Apr 2018 10:31:38 +0300 Subject: [PATCH] fix(http): remove const enum --- src/lib/src/http.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/src/http.ts b/src/lib/src/http.ts index 151ec1b5..15bdf6f8 100644 --- a/src/lib/src/http.ts +++ b/src/lib/src/http.ts @@ -12,7 +12,7 @@ import { HttpClient } from '@angular/common/http'; import { Provider, Type } from '@angular/core'; import { SpyObject } from './mock'; -export const enum HTTPMethod { +export enum HTTPMethod { GET = 'GET', POST = 'POST', DELETE = 'DELETE',