1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 09:43:23 +00:00

breach check changed to username

This commit is contained in:
Kyle Spearrin
2018-06-29 08:20:28 -04:00
parent 93edd272dd
commit e297f39bd5
2 changed files with 3 additions and 3 deletions

View File

@@ -2,5 +2,5 @@ import { BreachAccountResponse } from '../models/response/breachAccountResponse'
export abstract class AuditService {
passwordLeaked: (password: string) => Promise<number>;
breachedAccounts: (email: string) => Promise<BreachAccountResponse[]>;
breachedAccounts: (username: string) => Promise<BreachAccountResponse[]>;
}