1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 17:23:37 +00:00
Files
browser/src/abstractions/audit.service.ts
2018-06-29 08:20:28 -04:00

7 lines
259 B
TypeScript

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