From 377a272be6763a1679c1ac75713ed2bfe3b583dd Mon Sep 17 00:00:00 2001 From: KhoaHTD Date: Tue, 14 May 2024 11:27:09 +0700 Subject: [PATCH] fix: remove method type --- index.d.ts | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/index.d.ts b/index.d.ts index ce3faf0..1629d3d 100644 --- a/index.d.ts +++ b/index.d.ts @@ -4,19 +4,6 @@ import * as http from 'http'; import * as http2 from 'http2'; declare module 'pure-http' { - export enum Method { - GET = 'get', - POST = 'post', - PUT = 'put', - PATCH = 'patch', - DELETE = 'delete', - HEAD = 'head', - OPTIONS = 'options', - TRACE = 'trace', - CONNECT = 'connect', - ALL = 'all', - } - export interface ICookieSerializeOptions { encode?(value: string): string;