From 2499fa7b25e6cee12916a90dae33a8c619cf0885 Mon Sep 17 00:00:00 2001 From: Richard Date: Sat, 18 Feb 2017 16:51:09 -0300 Subject: [PATCH] Add missing Accounts._hashPassword --- meteor/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/meteor/index.d.ts b/meteor/index.d.ts index e411947122..0eb949e57b 100644 --- a/meteor/index.d.ts +++ b/meteor/index.d.ts @@ -428,6 +428,7 @@ declare namespace Accounts { function onCreateUser(func: Function): void; function validateLoginAttempt(cb: (params: Accounts.IValidateLoginAttemptCbOpts) => boolean): { stop: () => void }; function validateNewUser(func: Function): boolean; + function _hashPassword(password: string): { digest: string; algorithm: string; }; } declare namespace App {