UNPKG

zaraz-ts

Version:

Zaraz TS - A type-safe wrapper around the Cloudflare Zaraz Web API.

11 lines (10 loc) 279 B
/** * Get the current consent status for a purpose using the purpose ID. * * ``` * true: The consent was granted. * false: The consent was not granted. * undefined: The purpose does not exist. * ``` */ export declare function get(purposeId: string): boolean | undefined;