remove unnecessary file

This commit is contained in:
Timo Hocker 2020-05-06 07:55:39 +02:00
parent f8b851a46e
commit ecfd56ac98

15
index.d.ts vendored
View File

@ -1,15 +0,0 @@
/**
* create an argon2 hash
*
* @param {string} plain plain text
* @returns {Promise<string>} hash
*/
export function hash(plain: string): Promise<string>;
/**
* verify a plain text against an argon2 hash
*
* @param {string} hash_str hash
* @param {string} plain plain text
* @returns {Promise<boolean>} true if valid
*/
export function verify(hash_str: string, plain: string): Promise<boolean>;