UNPKG

fingerprinter-js

Version:

Enterprise-grade browser fingerprinting with 19 collectors and advanced bot detection

16 lines 469 B
/** * Hardware Collector * Collects hardware-related information */ import { CollectorMetadata, HardwareData } from "../types"; import { BaseCollector } from "./base"; /** * Hardware Collector * Collects CPU, memory, and device information */ export declare class HardwareCollector extends BaseCollector<HardwareData> { readonly name = "hardware"; readonly metadata: CollectorMetadata; collect(): HardwareData; } //# sourceMappingURL=hardware.d.ts.map