UNPKG

@sumsub/fisherman

Version:

The Sumsub Fisherman is a powerful tool that helps developers integrate fraud detection capabilities into their applications. With Fisherman, you can easily identify and prevent fraudulent activities within your system, providing a safer and more secure e

11 lines (10 loc) 573 B
import type { FingerprintOptions, FingerprintResponse, FpSimulationConf } from '../types'; export declare function initFingerprintScript(appToken: string, userSimulationConfig?: FpSimulationConf): Promise<{ isDeviceIntelligenceEnabled: boolean; behavioralDataEnabled: boolean; eventsRelUrl?: string; fpReqRelUrl?: string; }>; export declare function collectFingerprint(options?: FingerprintOptions): Promise<FingerprintResponse>; export declare function reportSimulation(): Promise<FingerprintResponse>; export declare const destroyFingerprint: () => void;