From a384bdf25ff08c99fd1c1f37fb22ceaa3873e10c Mon Sep 17 00:00:00 2001 From: Eric Ingram Date: Thu, 3 Oct 2024 06:58:10 -0600 Subject: [PATCH] add headers to init options type --- types/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/index.d.ts b/types/index.d.ts index 6ede4f0..e65d10a 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -105,6 +105,7 @@ export interface InitOptions { vaultUrl?: string; setCookie?: (key: string, value: string) => void; getCookie?: (key: string) => string | undefined; + headers?: Record; } export interface ResultsResponse {