@bynn-intelligence/agemin-sdk
Version:
agemin.com SDK for age verification
28 lines (27 loc) • 1.22 kB
TypeScript
export declare const SDK_VERSION = "__VERSION__";
export declare const DEFAULT_CONFIG: {
baseUrl: string;
theme: "auto";
locale: string;
debug: boolean;
allowSearchEngineBypass: boolean;
searchEngineDetection: "ua";
};
export declare const MODAL_STYLES: {
overlay: string;
modal: string;
closeButton: string;
iframe: string;
};
export declare const MOBILE_MODAL_STYLES: {
overlay: string;
modal: string;
closeButton: string;
iframe: string;
};
export declare const SPINNER_STYLES: {
container: string;
spinner: string;
spinnerMobile: string;
};
export declare const ANIMATIONS = "\n @keyframes agemin-fade-in {\n from { opacity: 0; }\n to { opacity: 1; }\n }\n @keyframes agemin-slide-up {\n from { transform: translateY(20px); opacity: 0; }\n to { transform: translateY(0); opacity: 1; }\n }\n @keyframes agemin-fade-out {\n from { opacity: 1; }\n to { opacity: 0; }\n }\n @keyframes agemin-slide-down {\n from { transform: translateY(0); opacity: 1; }\n to { transform: translateY(20px); opacity: 0; }\n }\n @keyframes agemin-spin {\n from { transform: rotate(0deg); }\n to { transform: rotate(360deg); }\n }\n";