From b0afbedf1b0c4e3d4b9991028e61fa39b886ae13 Mon Sep 17 00:00:00 2001 From: Marlon Barcarol Date: Mon, 4 Nov 2019 03:29:51 +0000 Subject: [PATCH] Adding Typescript HTTP method definition for LINK and UNLINK. (#2444) --- index.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.d.ts b/index.d.ts index 065f34bd79..d4af499f4a 100644 --- a/index.d.ts +++ b/index.d.ts @@ -29,6 +29,8 @@ export type Method = | 'post' | 'POST' | 'put' | 'PUT' | 'patch' | 'PATCH' + | 'link' | 'LINK' + | 'unlink' | 'UNLINK' export type ResponseType = | 'arraybuffer'