UNPKG

userdnajs

Version:

Community edition of UserDNA JS. A fingerprint generator library for creating unique user identifiers

17 lines (16 loc) 480 B
import { BrowserInfo } from '../types'; /** * Gets browser information for fingerprinting * @returns Browser information */ export declare function getBrowserInfo(): BrowserInfo; /** * Checks if the browser supports WebGL * @returns Whether WebGL is supported */ export declare function hasWebGLSupport(): boolean; /** * Gets a fingerprint value based on browser properties * @returns Browser fingerprint value */ export declare function getBrowserFingerprint(): string;