fingerprinter-js
Version:
Enterprise-grade browser fingerprinting with 19 collectors and advanced bot detection
16 lines • 478 B
TypeScript
/**
* Math Collector
* Creates fingerprint based on math precision differences
*/
import { CollectorMetadata, MathData } from "../types";
import { BaseCollector } from "./base";
/**
* Math Collector
* Different browsers/CPUs can produce slightly different math results
*/
export declare class MathCollector extends BaseCollector<MathData> {
readonly name = "math";
readonly metadata: CollectorMetadata;
collect(): MathData;
}
//# sourceMappingURL=math.d.ts.map