From 51eea7cb31dd9801ea1a8b1fc58df40bc7958f0d Mon Sep 17 00:00:00 2001 From: Danny Ouellet Date: Fri, 7 Feb 2020 09:17:53 -0500 Subject: [PATCH] Add Options handler Options was already specified in src VERBS but not defined in Types --- types/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/index.d.ts b/types/index.d.ts index c070869..20d5b43 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -59,6 +59,7 @@ declare class MockAdapter { onDelete: RequestMatcherFunc; onPatch: RequestMatcherFunc; onList: RequestMatcherFunc; + onOptions: RequestMatcherFunc; onAny: RequestMatcherFunc; }