File size: 177 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 |
type SHA256 = {
update( data: string ): SHA256;
digest( encoding: 'hex' ): string;
};
declare module 'hash.js/lib/hash/sha/256' {
export default function sha256(): SHA256;
}
|