zaraz-ts
Version:
Zaraz TS - A type-safe wrapper around the Cloudflare Zaraz Web API.
21 lines (20 loc) • 747 B
TypeScript
import { get } from './get';
import { getAll } from './get-all';
import { getAllCheckboxes } from './get-all-checkboxes';
import { getPurposes } from './get-purposes';
import { sendQueuedEvents } from './send-queued-events';
import { set } from './set';
import { setAll } from './set-all';
import { setAllCheckboxes } from './set-all-checkboxes';
import { setCheckboxes } from './set-checkboxes';
export declare const consent: {
get: typeof get;
set: typeof set;
getAll: typeof getAll;
setAll: typeof setAll;
getPurposes: typeof getPurposes;
getAllCheckboxes: typeof getAllCheckboxes;
setCheckboxes: typeof setCheckboxes;
setAllCheckboxes: typeof setAllCheckboxes;
sendQueuedEvents: typeof sendQueuedEvents;
};