1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-19 07:35:48 +02:00
bitwarden-browser/src/abstractions/audit.service.ts
2018-06-28 11:57:29 -04:00

7 lines
256 B
TypeScript

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