@quadible/web-sdk
Version:
The web sdk for Quadible's behavioral authentication service.
16 lines (15 loc) • 667 B
TypeScript
type ScreenResolution = [number | null, number | null];
/**
* A version of the entropy source with stabilization to make it suitable for static fingerprinting.
* The window resolution is always the document size in private mode of Safari 17,
* so the window resolution is not used in Safari 17.
*/
export default function getScreenResolution(): ScreenResolution | undefined;
/**
* A version of the entropy source without stabilization.
*
* Warning for package users:
* This function is out of Semantic Versioning, i.e. can change unexpectedly. Usage is at your own risk.
*/
export declare function getUnstableScreenResolution(): ScreenResolution;
export {};