mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
13 lines
402 B
TypeScript
13 lines
402 B
TypeScript
// Type definitions for browser-fingerprint 0.1
|
|
// Project: https://www.npmjs.com/package/browser-fingerprint
|
|
// Definitions by: Karol Janyst <https://github.com/LKay>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
interface browserFingerprint {
|
|
(): string;
|
|
default: browserFingerprint;
|
|
}
|
|
|
|
declare const browserFingerprint: browserFingerprint;
|
|
export = browserFingerprint;
|