fingerprint-oss
Version:
A comprehensive JavaScript library for device fingerprinting and system information collection. Provides robust, deterministic fingerprinting for web applications with privacy-conscious design.
14 lines (13 loc) • 368 B
TypeScript
/**
* Detects browser information using Bowser library
* @returns { name?: string, version?: string } Browser name and version
*/
export declare function getBrowserInfo(): {
name?: string;
version?: string;
};
/**
* Gets browser name using Bowser library
* @returns {string} Browser name or 'Unknown'
*/
export declare function getBrowserName(): string;