From 3d8c7669118e90003c69c50bfced6a2c4a5adeb6 Mon Sep 17 00:00:00 2001 From: Davor Peic Date: Thu, 10 Feb 2022 14:22:20 +0100 Subject: [PATCH] Update index.d.ts (#151) --- src/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index.d.ts b/src/index.d.ts index 0542674..4f3fcb8 100644 --- a/src/index.d.ts +++ b/src/index.d.ts @@ -65,12 +65,12 @@ export function getCookieConsentValue(name?: string): string; * Remove the cookie on browser in order to allow user to change their consent * @param {*} name optional name of the cookie */ -export function resetCookieConsentValue(name?: string); +export function resetCookieConsentValue(name?: string): void; /** * Get the legacy cookie name by the regular cookie name * @param {string} name of cookie to get */ -export function getLegacyCookieName(name: string); +export function getLegacyCookieName(name: string): string; export { Cookies };