DefinitelyTyped/types/browser-fingerprint/index.d.ts
2017-03-24 14:27:52 -07:00

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;