fixed typings, my bad!

This commit is contained in:
Rick van Lieshout 2019-08-19 19:10:23 +02:00
parent 51e0c9949c
commit 959412c96b
2 changed files with 2 additions and 2 deletions

2
build/index.d.ts vendored
View File

@ -17,7 +17,7 @@ export interface CookieConsentProps {
cookieName?: string;
cookieValue?: string | boolean | number;
declineCookieValue?: string | boolean | number;
setDeclineCookie?: PropTypes.bool;
setDeclineCookie?: boolean;
debug?: boolean;
expires?: number;
containerClasses?: string;

2
src/index.d.ts vendored
View File

@ -17,7 +17,7 @@ export interface CookieConsentProps {
cookieName?: string;
cookieValue?: string | boolean | number;
declineCookieValue?: string | boolean | number;
setDeclineCookie?: PropTypes.bool;
setDeclineCookie?: boolean;
debug?: boolean;
expires?: number;
containerClasses?: string;