1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

lazy load history

This commit is contained in:
Kyle Spearrin
2018-01-19 14:58:06 -05:00
parent 8636033159
commit e753becd33
2 changed files with 34 additions and 22 deletions

View File

@@ -6,7 +6,7 @@ export interface PasswordGenerationService {
generatePassword(options: any): string;
getOptions(): any;
saveOptions(options: any): Promise<any>;
getHistory(): PasswordHistory[];
getHistory(): Promise<PasswordHistory[]>;
addHistory(password: string): Promise<any>;
clear(): Promise<any>;
}