mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 07:43:35 +00:00
7 lines
257 B
TypeScript
7 lines
257 B
TypeScript
import { BreachAccountResponse } from "../models/response/breach-account.response";
|
|
|
|
export abstract class AuditService {
|
|
passwordLeaked: (password: string) => Promise<number>;
|
|
breachedAccounts: (username: string) => Promise<BreachAccountResponse[]>;
|
|
}
|