export { TokenService, UserService } from '@loopback/authentication'; export interface PasswordService { hash(pass: string): Promise; verify(pass: string, passIn: string): Promise; }