mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 08:13:42 +00:00
send password history to server
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
import { PasswordHistory } from '../models/domain/passwordHistory';
|
||||
import { GeneratedPasswordHistory } from '../models/domain/generatedPasswordHistory';
|
||||
|
||||
export abstract class PasswordGenerationService {
|
||||
generatePassword: (options: any) => Promise<string>;
|
||||
getOptions: () => any;
|
||||
saveOptions: (options: any) => Promise<any>;
|
||||
getHistory: () => Promise<PasswordHistory[]>;
|
||||
getHistory: () => Promise<GeneratedPasswordHistory[]>;
|
||||
addHistory: (password: string) => Promise<any>;
|
||||
clear: () => Promise<any>;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user