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

breach report audit api

This commit is contained in:
Kyle Spearrin
2018-06-28 11:57:29 -04:00
parent 569ad25208
commit a097ef9bea
3 changed files with 47 additions and 0 deletions

View File

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