From 5189afff38dc0689ac0c1b1bfa51626bb8541709 Mon Sep 17 00:00:00 2001 From: Motonori Iwata <121048+iwata@users.noreply.github.com> Date: Sat, 7 Mar 2020 15:45:25 +0900 Subject: [PATCH] Allow PURGE method in typings (#2191) Co-authored-by: Xianming Zhong --- index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/index.d.ts b/index.d.ts index 7244683..da0e867 100644 --- a/index.d.ts +++ b/index.d.ts @@ -29,6 +29,7 @@ export type Method = | 'post' | 'POST' | 'put' | 'PUT' | 'patch' | 'PATCH' + | 'purge' | 'PURGE' | 'link' | 'LINK' | 'unlink' | 'UNLINK'