DefinitelyTyped/types/ripemd160/index.d.ts
2018-11-26 22:03:57 +01:00

17 lines
416 B
TypeScript

// Type definitions for ripemd160 2.0
// Project: https://github.com/crypto-browserify/ripemd160#readme
// Definitions by: BendingBender <https://github.com/BendingBender>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="node" />
import { Hash } from 'crypto';
export = RIPEMD160;
declare const RIPEMD160: RIPEMD160Static;
interface RIPEMD160Static {
new (): Hash;
}