@safepassage/sdk
Version:
SafePassage SDK - Lightweight redirect-based age verification
13 lines (12 loc) • 648 B
TypeScript
/**
* SafePassage SDK - Redirect-based age verification
*/
import { VerificationSDK } from '../../core/VerificationSDK';
import type { SDKConfig, VerificationOptions, VerificationResult, SessionValidationResponse, SessionCreationResponse, CreateSessionRequest } from '../../types/base';
export type SafePassageConfig = SDKConfig;
export declare class SafePassage extends VerificationSDK {
constructor(config: SafePassageConfig);
}
export declare const VERSION = "3.5.2";
export type { SDKConfig, VerificationOptions, VerificationResult, SessionValidationResponse, SessionCreationResponse, CreateSessionRequest, };
export default SafePassage;