| 10 | * Options for Fingerprint class loading |
| 11 | */ |
| 12 | export interface LoadOptions { |
| 13 | /** |
| 14 | * When browser doesn't support `requestIdleCallback` a `setTimeout` will be used. This number is only for Safari and |
| 15 | * old Edge, because Chrome/Blink based browsers support `requestIdleCallback`. The value is in milliseconds. |
| 16 | * @default 50 |
| 17 | */ |
| 18 | delayFallback?: number |
| 19 | /** |
| 20 | * Whether to print debug messages to the console. |
| 21 | * Required to ease investigations of problems. |
| 22 | */ |
| 23 | debug?: boolean |
| 24 | /** |
| 25 | * Set `false` to disable the unpersonalized AJAX request that the agent sends to collect installation statistics. |
| 26 | * It's always disabled in the version published to the FingerprintJS CDN. |
| 27 | */ |
| 28 | monitoring?: boolean |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * Options for getting visitor identifier |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…