UNPKG

175 BTypeScriptView Raw
1/// <reference types="node" />
2
3import { Hash } from "crypto";
4
5export = RIPEMD160;
6
7declare const RIPEMD160: RIPEMD160Static;
8
9interface RIPEMD160Static {
10 new(): Hash;
11}