mirror of
https://github.com/bitwarden/browser
synced 2025-12-23 19:53:43 +00:00
Split jslib into multiple modules (#363)
* Split jslib into multiple modules
This commit is contained in:
6
common/src/abstractions/audit.service.ts
Normal file
6
common/src/abstractions/audit.service.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import { BreachAccountResponse } from '../models/response/breachAccountResponse';
|
||||
|
||||
export abstract class AuditService {
|
||||
passwordLeaked: (password: string) => Promise<number>;
|
||||
breachedAccounts: (username: string) => Promise<BreachAccountResponse[]>;
|
||||
}
|
||||
Reference in New Issue
Block a user