release 7.3.1

This commit is contained in:
2022-02-10 14:25:18 +01:00
parent 3d8c766911
commit e96b4fe4c0
4 changed files with 9 additions and 5 deletions

4
build/index.d.ts vendored
View File

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