UNPKG
vpn.email.client
Version:
latest (0.1.3)
0.1.3
0.1.2
0.1.1
0.1.0
Vpn.Email client IMAP core
github.com/vpnemail/vpn.email.client
vpnemail/vpn.email.client
vpn.email.client
/
typings
/
password-hash
/
password-hash.d.ts
9 lines
•
204 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
declare
module
"password-hash"
{
interface
ex {
generate
:
(
pass
:
string
)=>
string
;
verify
:
(
pass
:
string
,
hashed
:
string
) =>
boolean
;
isHashed
:
(
pass
:
string
) =>
boolean
; }
let
exec
:ex;
export
= exec; }