import { compare } from 'bcrypt'; const compareBcrypt = (plain: string, hashed: string): Promise => compare(plain, hashed); export default compareBcrypt;