// Type definitions for aspnet-identity-pw 1.0.0 // Project: https://github.com/Syncbak-Git/aspnet-identity-pw // Definitions by: jt000 // Definitions: https://github.com/borisyankov/DefinitelyTyped declare module "aspnet-identity-pw" { export function hashPassword(password: string): string; export function hashPassword(password: string, callback: (err: any, result: string)=>void): void; export function validatePassword(password: string, hashedPass: string): boolean; export function validatePassword(password: string, hashedPass: string, callback: (err: any, result: boolean) => void): void; }