UNPKG

@quadible/web-sdk

Version:

The web sdk for Quadible's behavioral authentication service.

70 lines (69 loc) 2.99 kB
import getApplePayState from './apple_pay'; import getArchitecture from './architecture'; import getAudioContextBaseLatency from './audio_base_latency'; import getColorDepth from './color_depth'; import getColorGamut from './color_gamut'; import getContrastPreference from './contrast'; import areCookiesEnabled from './cookies_enabled'; import getFonts from './fonts'; import areColorsForced from './forced_colors'; import getHardwareConcurrency from './hardware_concurrency'; import isHDR from './hdr'; import getIndexedDB from './indexed_db'; import areColorsInverted from './inverted_colors'; import getLanguages from './languages'; import getLocalStorage from './local_storage'; import getMathFingerprint from './math'; import getMonochromeDepth from './monochrome'; import getOpenDatabase from './open_database'; import getOsCpu from './os_cpu'; import isPdfViewerEnabled from './pdf_viewer_enabled'; import getPlatform from './platform'; import getPlugins from './plugins'; import getPrivateClickMeasurement from './private_click_measurement'; import isMotionReduced from './reduced_motion'; import isTransparencyReduced from './reduced_transparency'; import getScreenFrame from './screen_frame'; import getScreenResolution from './screen_resolution'; import getSessionStorage from './session_storage'; import getTimezone from './timezone'; import getTouchSupport from './touch_support'; import getVendor from './vendor'; import getVendorFlavors from './vendor_flavors'; import { getWebGlBasics, getWebGlExtensions } from './webgl'; export declare const sources: { fonts: typeof getFonts; screenFrame: typeof getScreenFrame; osCpu: typeof getOsCpu; languages: typeof getLanguages; colorDepth: typeof getColorDepth; screenResolution: typeof getScreenResolution; hardwareConcurrency: typeof getHardwareConcurrency; timezone: typeof getTimezone; sessionStorage: typeof getSessionStorage; localStorage: typeof getLocalStorage; indexedDB: typeof getIndexedDB; openDatabase: typeof getOpenDatabase; platform: typeof getPlatform; plugins: typeof getPlugins; touchSupport: typeof getTouchSupport; vendor: typeof getVendor; vendorFlavors: typeof getVendorFlavors; cookiesEnabled: typeof areCookiesEnabled; colorGamut: typeof getColorGamut; invertedColors: typeof areColorsInverted; forcedColors: typeof areColorsForced; monochrome: typeof getMonochromeDepth; contrast: typeof getContrastPreference; reducedMotion: typeof isMotionReduced; reducedTransparency: typeof isTransparencyReduced; hdr: typeof isHDR; math: typeof getMathFingerprint; pdfViewerEnabled: typeof isPdfViewerEnabled; architecture: typeof getArchitecture; applePay: typeof getApplePayState; privateClickMeasurement: typeof getPrivateClickMeasurement; audioBaseLatency: typeof getAudioContextBaseLatency; webGlBasics: typeof getWebGlBasics; webGlExtensions: typeof getWebGlExtensions; };