UNPKG

@aller/blink

Version:

A library for tracking user behaviour.

17 lines (16 loc) 388 B
export interface ConsentState { uuid?: string; tcfV2?: string; kind?: string; consentGranted?: boolean; consentedToAll?: boolean; applies?: boolean; } export default function consent(state: ConsentState | undefined, action: any): ConsentState | { uuid: any; tcfV2: any; kind: any; consentGranted: any; consentedToAll: any; applies: any; };