react-native-efilli-sdk
Version:
Efilli SDK for React Native - Consent Management Solution
23 lines (22 loc) • 575 B
TypeScript
/**
* Enumeration of possible consent actions that can be taken by the user
*/
export declare enum ConsentAction {
/**
* Save the current selection of consent options
*/
SAVE = "save",
/**
* Indicates the saved consent is being returned
*/
SAVED_CONSENT = "saved-consent",
/**
* Reject all optional consent categories
*/
REJECT_ALL = "reject-all",
/**
* Accept all consent categories
*/
ACCEPT_ALL = "accept-all"
}
export declare const fromConsentActionValue: (value: string) => ConsentAction | null;