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 };