From ecfd56ac98602a2df5df6942ebacfb667dc83284 Mon Sep 17 00:00:00 2001 From: Timo Hocker Date: Wed, 6 May 2020 07:55:39 +0200 Subject: [PATCH] remove unnecessary file --- index.d.ts | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 index.d.ts diff --git a/index.d.ts b/index.d.ts deleted file mode 100644 index c3607e0..0000000 --- a/index.d.ts +++ /dev/null @@ -1,15 +0,0 @@ -/** - * create an argon2 hash - * - * @param {string} plain plain text - * @returns {Promise} hash - */ -export function hash(plain: string): Promise; -/** - * verify a plain text against an argon2 hash - * - * @param {string} hash_str hash - * @param {string} plain plain text - * @returns {Promise} true if valid - */ -export function verify(hash_str: string, plain: string): Promise;