UNPKG

camoufox

Version:

JavaScript port of Camoufox - a tool for Firefox anti-fingerprinting and browser automation.

15 lines (14 loc) 378 B
interface WebGLData { vendor: string; renderer: string; data: any; } export declare function sampleWebGL(os: string, vendor?: string, renderer?: string): Promise<WebGLData>; interface PossiblePairs { [key: string]: Array<{ vendor: string; renderer: string; }>; } export declare function getPossiblePairs(): Promise<PossiblePairs>; export {};