| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634 |
- /**
- * FingerprintJS v4.6.2 - Copyright (c) FingerprintJS, Inc, 2025 (https://fingerprint.com)
- *
- * Licensed under Business Source License 1.1 https://mariadb.com/bsl11/
- * Licensor: FingerprintJS, Inc.
- * Licensed Work: FingerprintJS browser fingerprinting library
- * Additional Use Grant: None
- * Change Date: Four years from first release for the specific version.
- * Change License: MIT, text at https://opensource.org/license/mit/ with the following copyright notice:
- * Copyright 2015-present FingerprintJS, Inc.
- */
- type MaybePromise<T> = Promise<T> | T;
- /**
- * A functions that returns data with entropy to identify visitor.
- *
- * See https://github.com/fingerprintjs/fingerprintjs/blob/master/contributing.md#how-to-add-an-entropy-source
- * to learn how entropy source works and how to make your own.
- */
- type Source<TOptions, TValue> = (options: TOptions) => MaybePromise<TValue | (() => MaybePromise<TValue>)>;
- /**
- * Generic dictionary of unknown sources
- */
- type UnknownSources<TOptions> = Record<string, Source<TOptions, unknown>>;
- /**
- * Converts an entropy source type into the component type
- */
- type SourceValue<TSource extends Source<any, any>> = TSource extends Source<any, infer T> ? T : never;
- /**
- * Result of getting entropy data from a source
- */
- type Component<T> = ({
- value: T;
- } | {
- error: unknown;
- }) & {
- duration: number;
- };
- /**
- * Generic dictionary of unknown components
- */
- type UnknownComponents = Record<string, Component<unknown>>;
- /**
- * Converts an entropy source list type to a corresponding component list type.
- *
- * Warning for package users:
- * This type is out of Semantic Versioning, i.e. can change unexpectedly. Usage is at your own risk.
- */
- type SourcesToComponents<TSources extends UnknownSources<any>> = {
- [K in keyof TSources]: Component<SourceValue<TSources[K]>>;
- };
- /**
- * Loads the given entropy sources. Returns a function that collects the entropy components.
- *
- * The result is returned synchronously in order to allow start getting the components
- * before the sources are loaded completely.
- *
- * Warning for package users:
- * This function is out of Semantic Versioning, i.e. can change unexpectedly. Usage is at your own risk.
- */
- declare function loadSources<TSourceOptions, TSources extends UnknownSources<TSourceOptions>, TExclude extends string>(sources: TSources, sourceOptions: TSourceOptions, excludeSources: readonly TExclude[], loopReleaseInterval?: number): () => Promise<Omit<SourcesToComponents<TSources>, TExclude>>;
- /**
- * Modifies an entropy source by transforming its returned value with the given function.
- * Keeps the source properties: sync/async, 1/2 stages.
- *
- * Warning for package users:
- * This function is out of Semantic Versioning, i.e. can change unexpectedly. Usage is at your own risk.
- */
- declare function transformSource<TOptions, TValueBefore, TValueAfter>(source: Source<TOptions, TValueBefore>, transformValue: (value: TValueBefore) => TValueAfter): Source<TOptions, TValueAfter>;
- /**
- * A deep description: https://fingerprint.com/blog/audio-fingerprinting/
- * Inspired by and based on https://github.com/cozylife/audio-fingerprint
- *
- * A version of the entropy source with stabilization to make it suitable for static fingerprinting.
- * Audio signal is noised in private mode of Safari 17, so audio fingerprinting is skipped in Safari 17.
- */
- declare function getAudioFingerprint(): number | (() => Promise<number>);
- /**
- * 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.
- */
- declare function getUnstableAudioFingerprint(): number | (() => Promise<number>);
- declare function getFonts(): Promise<string[]>;
- type PluginMimeTypeData = {
- type: string;
- suffixes: string;
- };
- type PluginData = {
- name: string;
- description: string;
- mimeTypes: PluginMimeTypeData[];
- };
- declare function getPlugins(): PluginData[] | undefined;
- interface CanvasFingerprint {
- winding: boolean;
- geometry: string;
- text: string;
- }
- /**
- * @see https://www.browserleaks.com/canvas#how-does-it-work
- *
- * A version of the entropy source with stabilization to make it suitable for static fingerprinting.
- * Canvas image is noised in private mode of Safari 17, so image rendering is skipped in Safari 17.
- */
- declare function getCanvasFingerprint(): CanvasFingerprint;
- /**
- * 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.
- */
- declare function getUnstableCanvasFingerprint(skipImages?: boolean): CanvasFingerprint;
- type TouchSupport = {
- maxTouchPoints: number;
- /** The success or failure of creating a TouchEvent */
- touchEvent: boolean;
- /** The availability of the "ontouchstart" property */
- touchStart: boolean;
- };
- /**
- * This is a crude and primitive touch screen detection. It's not possible to currently reliably detect the availability
- * of a touch screen with a JS, without actually subscribing to a touch event.
- *
- * @see http://www.stucox.com/blog/you-cant-detect-a-touchscreen/
- * @see https://github.com/Modernizr/Modernizr/issues/548
- */
- declare function getTouchSupport(): TouchSupport;
- declare function getOsCpu(): string | undefined;
- declare function getLanguages(): string[][];
- declare function getColorDepth(): number;
- declare function getDeviceMemory(): number | undefined;
- 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.
- */
- declare 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.
- */
- declare function getUnstableScreenResolution(): ScreenResolution;
- /**
- * The order matches the CSS side order: top, right, bottom, left.
- *
- * @ignore Named array elements aren't used because of multiple TypeScript compatibility complaints from users
- */
- type FrameSize = [number | null, number | null, number | null, number | null];
- /**
- * 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.
- */
- declare function getUnstableScreenFrame(): () => Promise<FrameSize>;
- /**
- * A version of the entropy source with stabilization to make it suitable for static fingerprinting.
- *
- * Sometimes the available screen resolution changes a bit, e.g. 1900x1440 → 1900x1439. A possible reason: macOS Dock
- * shrinks to fit more icons when there is too little space. The rounding is used to mitigate the difference.
- *
- * The frame width is always 0 in private mode of Safari 17, so the frame is not used in Safari 17.
- */
- declare function getScreenFrame(): () => Promise<FrameSize | undefined>;
- declare function getHardwareConcurrency(): number | undefined;
- declare function getTimezone(): string;
- declare function getSessionStorage(): boolean;
- declare function getLocalStorage(): boolean;
- declare function getIndexedDB(): boolean | undefined;
- declare function getOpenDatabase(): boolean;
- declare function getCpuClass(): string | undefined;
- declare function getPlatform(): string;
- declare function getVendor(): string;
- /**
- * Checks for browser-specific (not engine specific) global variables to tell browsers with the same engine apart.
- * Only somewhat popular browsers are considered.
- */
- declare function getVendorFlavors(): string[];
- /**
- * navigator.cookieEnabled cannot detect custom or nuanced cookie blocking configurations. For example, when blocking
- * cookies via the Advanced Privacy Settings in IE9, it always returns true. And there have been issues in the past with
- * site-specific exceptions. Don't rely on it.
- *
- * @see https://github.com/Modernizr/Modernizr/blob/master/feature-detects/cookies.js Taken from here
- */
- declare function areCookiesEnabled(): boolean;
- type Options$1 = {
- debug?: boolean;
- };
- /**
- * The order of the returned array means nothing (it's always sorted alphabetically).
- *
- * Notice that the source is slightly unstable.
- * Safari provides a 2-taps way to disable all content blockers on a page temporarily.
- * Also content blockers can be disabled permanently for a domain, but it requires 4 taps.
- * So empty array shouldn't be treated as "no blockers", it should be treated as "no signal".
- * If you are a website owner, don't make your visitors want to disable content blockers.
- */
- declare function getDomBlockers({ debug }?: Options$1): Promise<string[] | undefined>;
- type ColorGamut = 'srgb' | 'p3' | 'rec2020';
- /**
- * @see https://developer.mozilla.org/en-US/docs/Web/CSS/@media/color-gamut
- */
- declare function getColorGamut(): ColorGamut | undefined;
- /**
- * @see https://developer.mozilla.org/en-US/docs/Web/CSS/@media/inverted-colors
- */
- declare function areColorsInverted(): boolean | undefined;
- /**
- * @see https://developer.mozilla.org/en-US/docs/Web/CSS/@media/forced-colors
- */
- declare function areColorsForced(): boolean | undefined;
- /**
- * If the display is monochrome (e.g. black&white), the value will be ≥0 and will mean the number of bits per pixel.
- * If the display is not monochrome, the returned value will be 0.
- * If the browser doesn't support this feature, the returned value will be undefined.
- *
- * @see https://developer.mozilla.org/en-US/docs/Web/CSS/@media/monochrome
- */
- declare function getMonochromeDepth(): number | undefined;
- /**
- * @see https://www.w3.org/TR/mediaqueries-5/#prefers-contrast
- * @see https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-contrast
- */
- declare function getContrastPreference(): number | undefined;
- /**
- * @see https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-reduced-motion
- */
- declare function isMotionReduced(): boolean | undefined;
- /**
- * @see https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-reduced-transparency
- */
- declare function isTransparencyReduced(): boolean | undefined;
- /**
- * @see https://www.w3.org/TR/mediaqueries-5/#dynamic-range
- */
- declare function isHDR(): boolean | undefined;
- /**
- * @see https://gitlab.torproject.org/legacy/trac/-/issues/13018
- * @see https://bugzilla.mozilla.org/show_bug.cgi?id=531915
- */
- declare function getMathFingerprint(): Record<string, number>;
- /**
- * The result is a dictionary of the width of the text samples.
- * Heights aren't included because they give no extra entropy and are unstable.
- *
- * The result is very stable in IE 11, Edge 18 and Safari 14.
- * The result changes when the OS pixel density changes in Chromium 87. The real pixel density is required to solve,
- * but seems like it's impossible: https://stackoverflow.com/q/1713771/1118709.
- * The "min" and the "mono" (only on Windows) value may change when the page is zoomed in Firefox 87.
- */
- declare function getFontPreferences(): Promise<Record<string, number>>;
- declare function isPdfViewerEnabled(): boolean | undefined;
- /**
- * Unlike most other architectures, on x86/x86-64 when floating-point instructions
- * have no NaN arguments, but produce NaN output, the output NaN has sign bit set.
- * We use it to distinguish x86/x86-64 from other architectures, by doing subtraction
- * of two infinities (must produce NaN per IEEE 754 standard).
- *
- * See https://codebrowser.bddppq.com/pytorch/pytorch/third_party/XNNPACK/src/init.c.html#79
- */
- declare function getArchitecture(): number;
- /**
- * The return type is a union instead of the enum, because it's too challenging to embed the const enum into another
- * project. Turning it into a union is a simple and an elegant solution.
- */
- declare function getApplePayState(): 0 | 1 | -1 | -2 | -3;
- /**
- * Checks whether the Safari's Privacy Preserving Ad Measurement setting is on.
- * The setting is on when the value is not undefined.
- * A.k.a. private click measurement, privacy-preserving ad attribution.
- *
- * Unfortunately, it doesn't work in mobile Safari.
- * Probably, it will start working in mobile Safari or stop working in desktop Safari later.
- * We've found no way to detect the setting state in mobile Safari. Help wanted.
- *
- * @see https://webkit.org/blog/11529/introducing-private-click-measurement-pcm/
- * @see https://developer.apple.com/videos/play/wwdc2021/10033
- */
- declare function getPrivateClickMeasurement(): string | undefined;
- /**
- * WebGL basic features
- */
- type WebGlBasicsPayload = {
- version: string;
- vendor: string;
- vendorUnmasked: string;
- renderer: string;
- rendererUnmasked: string;
- shadingLanguageVersion: string;
- };
- /**
- * WebGL extended features
- */
- type WebGlExtensionsPayload = {
- contextAttributes: string[];
- parameters: string[];
- shaderPrecisions: string[];
- extensions: string[] | null;
- extensionParameters: string[];
- unsupportedExtensions: string[];
- };
- type CanvasContext = WebGLRenderingContext & {
- readonly canvas: HTMLCanvasElement;
- };
- type Options = {
- cache: {
- webgl?: {
- context: CanvasContext | undefined;
- };
- };
- };
- /** WebGl context is not available */
- declare const STATUS_NO_GL_CONTEXT = -1;
- /** WebGL context `getParameter` method is not a function */
- declare const STATUS_GET_PARAMETER_NOT_A_FUNCTION = -2;
- type SpecialStatus = typeof STATUS_NO_GL_CONTEXT | typeof STATUS_GET_PARAMETER_NOT_A_FUNCTION;
- /**
- * Gets the basic and simple WebGL parameters
- */
- declare function getWebGlBasics({ cache }: Options): WebGlBasicsPayload | SpecialStatus;
- /**
- * Gets the advanced and massive WebGL parameters and extensions
- */
- declare function getWebGlExtensions({ cache }: Options): WebGlExtensionsPayload | SpecialStatus;
- /**
- * This function usually takes the most time to execute in all the sources, therefore we cache its result.
- *
- * Warning for package users:
- * This function is out of Semantic Versioning, i.e. can change unexpectedly. Usage is at your own risk.
- */
- declare function getWebGLContext(cache: Options['cache']): CanvasContext | undefined;
- declare function getAudioContextBaseLatency(): number;
- /**
- * @see https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DateTimeFormat/resolvedOptions
- *
- * The return type is a union instead of a const enum due to the difficulty of embedding const enums in other projects.
- * This makes integration simpler and more elegant.
- */
- declare function getDateTimeLocale(): string | -1 | -2 | -3;
- /**
- * The list of entropy sources used to make visitor identifiers.
- *
- * This value isn't restricted by Semantic Versioning, i.e. it may be changed without bumping minor or major version of
- * this package.
- *
- * Note: Rollup and Webpack are smart enough to remove unused properties of this object during tree-shaking, so there is
- * no need to export the sources individually.
- */
- declare const sources: {
- fonts: typeof getFonts;
- domBlockers: typeof getDomBlockers;
- fontPreferences: typeof getFontPreferences;
- audio: typeof getAudioFingerprint;
- screenFrame: typeof getScreenFrame;
- canvas: typeof getCanvasFingerprint;
- osCpu: typeof getOsCpu;
- languages: typeof getLanguages;
- colorDepth: typeof getColorDepth;
- deviceMemory: typeof getDeviceMemory;
- screenResolution: typeof getScreenResolution;
- hardwareConcurrency: typeof getHardwareConcurrency;
- timezone: typeof getTimezone;
- sessionStorage: typeof getSessionStorage;
- localStorage: typeof getLocalStorage;
- indexedDB: typeof getIndexedDB;
- openDatabase: typeof getOpenDatabase;
- cpuClass: typeof getCpuClass;
- 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;
- dateTimeLocale: typeof getDateTimeLocale;
- webGlBasics: typeof getWebGlBasics;
- webGlExtensions: typeof getWebGlExtensions;
- };
- /**
- * List of components from the built-in entropy sources.
- *
- * Warning! This type is out of Semantic Versioning, i.e. may have incompatible changes within a major version. If you
- * want to avoid breaking changes, use `UnknownComponents` instead that is more generic but guarantees backward
- * compatibility within a major version. This is because browsers change constantly and therefore entropy sources have
- * to change too.
- */
- type BuiltinComponents = SourcesToComponents<typeof sources>;
- interface Confidence {
- /**
- * A number between 0 and 1 that tells how much the agent is sure about the visitor identifier.
- * The higher the number, the higher the chance of the visitor identifier to be true.
- */
- score: number;
- /**
- * Additional details about the score as a human-readable text
- */
- comment?: string;
- }
- /**
- * Options for Fingerprint class loading
- */
- interface LoadOptions {
- /**
- * When browser doesn't support `requestIdleCallback` a `setTimeout` will be used. This number is only for Safari and
- * old Edge, because Chrome/Blink based browsers support `requestIdleCallback`. The value is in milliseconds.
- * @default 50
- */
- delayFallback?: number;
- /**
- * Whether to print debug messages to the console.
- * Required to ease investigations of problems.
- */
- debug?: boolean;
- }
- /**
- * Options for getting visitor identifier
- */
- interface GetOptions {
- /**
- * Whether to print debug messages to the console.
- *
- * @deprecated Use the `debug` option of `load()` instead
- */
- debug?: boolean;
- }
- /**
- * Result of getting a visitor identifier
- */
- interface GetResult {
- /**
- * The visitor identifier
- */
- visitorId: string;
- /**
- * A confidence score that tells how much the agent is sure about the visitor identifier
- */
- confidence: Confidence;
- /**
- * List of components that has formed the visitor identifier.
- *
- * Warning! The type of this property is specific but out of Semantic Versioning, i.e. may have incompatible changes
- * within a major version. If you want to avoid breaking changes, treat the property as having type
- * `UnknownComponents` that is more generic but guarantees backward compatibility within a major version.
- */
- components: BuiltinComponents;
- /**
- * The fingerprinting algorithm version
- *
- * @see https://github.com/fingerprintjs/fingerprintjs#version-policy For more details
- */
- version: string;
- }
- /**
- * Agent object that can get visitor identifier
- */
- interface Agent {
- /**
- * Gets the visitor identifier
- */
- get(options?: Readonly<GetOptions>): Promise<GetResult>;
- }
- declare function componentsToDebugString(components: UnknownComponents): string;
- declare function hashComponents(components: UnknownComponents): string;
- /**
- * A delay is required to ensure consistent entropy components.
- * See https://github.com/fingerprintjs/fingerprintjs/issues/254
- * and https://github.com/fingerprintjs/fingerprintjs/issues/307
- * and https://github.com/fingerprintjs/fingerprintjs/commit/945633e7c5f67ae38eb0fea37349712f0e669b18
- */
- declare function prepareForSources(delayFallback?: number): Promise<void>;
- /**
- * Builds an instance of Agent and waits a delay required for a proper operation.
- */
- declare function load(options?: Readonly<LoadOptions>): Promise<Agent>;
- /**
- * Given a string and an optional seed as an int, returns a 128 bit
- * hash using the x64 flavor of MurmurHash3, as an unsigned hex.
- * All internal functions mutates passed value to achieve minimal memory allocations and GC load
- *
- * Benchmark https://jsbench.me/p4lkpaoabi/1
- */
- declare function x64hash128(input: string, seed?: number): string;
- /**
- * Checks whether the browser is based on Trident (the Internet Explorer engine) without using user-agent.
- *
- * Warning for package users:
- * This function is out of Semantic Versioning, i.e. can change unexpectedly. Usage is at your own risk.
- */
- declare function isTrident(): boolean;
- /**
- * Checks whether the browser is based on EdgeHTML (the pre-Chromium Edge engine) without using user-agent.
- *
- * Warning for package users:
- * This function is out of Semantic Versioning, i.e. can change unexpectedly. Usage is at your own risk.
- */
- declare function isEdgeHTML(): boolean;
- /**
- * Checks whether the browser is based on Chromium without using user-agent.
- *
- * Warning for package users:
- * This function is out of Semantic Versioning, i.e. can change unexpectedly. Usage is at your own risk.
- */
- declare function isChromium(): boolean;
- /**
- * Checks whether the browser is based on mobile or desktop Safari without using user-agent.
- * All iOS browsers use WebKit (the Safari engine).
- *
- * Warning for package users:
- * This function is out of Semantic Versioning, i.e. can change unexpectedly. Usage is at your own risk.
- */
- declare function isWebKit(): boolean;
- /**
- * Checks whether this WebKit browser is a desktop browser.
- * It doesn't check that the browser is based on WebKit, there is a separate function for this.
- *
- * Warning for package users:
- * This function is out of Semantic Versioning, i.e. can change unexpectedly. Usage is at your own risk.
- */
- declare function isDesktopWebKit(): boolean;
- /**
- * Checks whether the browser is based on Gecko (Firefox engine) without using user-agent.
- *
- * Warning for package users:
- * This function is out of Semantic Versioning, i.e. can change unexpectedly. Usage is at your own risk.
- */
- declare function isGecko(): boolean;
- /**
- * Warning for package users:
- * This function is out of Semantic Versioning, i.e. can change unexpectedly. Usage is at your own risk.
- */
- declare function getFullscreenElement(): Element | null;
- /**
- * Checks whether the device runs on Android without using user-agent.
- *
- * Warning for package users:
- * This function is out of Semantic Versioning, i.e. can change unexpectedly. Usage is at your own risk.
- */
- declare function isAndroid(): boolean;
- /**
- * Checks whether the browser is Samsung Internet without using user-agent.
- * It doesn't check that the browser is based on Chromium, please use `isChromium` before using this function.
- *
- * Warning for package users:
- * This function is out of Semantic Versioning, i.e. can change unexpectedly. Usage is at your own risk.
- */
- declare function isSamsungInternet(): boolean;
- /**
- * Creates and keeps an invisible iframe while the given function runs.
- * The given function is called when the iframe is loaded and has a body.
- * The iframe allows to measure DOM sizes inside itself.
- *
- * Notice: passing an initial HTML code doesn't work in IE.
- *
- * Warning for package users:
- * This function is out of Semantic Versioning, i.e. can change unexpectedly. Usage is at your own risk.
- */
- declare function withIframe<T>(action: (iframe: HTMLIFrameElement, iWindow: typeof window) => MaybePromise<T>, initialHtml?: string, domPollInterval?: number): Promise<T>;
- declare const _default: {
- load: typeof load;
- hashComponents: typeof hashComponents;
- componentsToDebugString: typeof componentsToDebugString;
- };
- /** Not documented, out of Semantic Versioning, usage is at your own risk */
- declare const murmurX64Hash128: typeof x64hash128;
- export { Agent, BuiltinComponents, Component, Confidence, GetOptions, GetResult, LoadOptions, Source, SourcesToComponents, UnknownComponents, UnknownSources, componentsToDebugString, _default as default, getFullscreenElement, getUnstableAudioFingerprint, getUnstableCanvasFingerprint, getUnstableScreenFrame, getUnstableScreenResolution, getWebGLContext, hashComponents, isAndroid, isChromium, isDesktopWebKit, isEdgeHTML, isGecko, isSamsungInternet, isTrident, isWebKit, load, loadSources, murmurX64Hash128, prepareForSources, sources, transformSource, withIframe };
|