1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-19 07:35:48 +02:00
bitwarden-browser/src/abstractions/passwordGeneration.service.ts

11 lines
378 B
TypeScript
Raw Normal View History

import { PasswordHistory } from '../models/domain/passwordHistory';
2018-01-09 23:55:32 +01:00
2018-01-29 23:59:57 +01:00
export abstract class PasswordGenerationService {
generatePassword: (options: any) => string;
getOptions: () => any;
saveOptions: (options: any) => Promise<any>;
getHistory: () => Promise<PasswordHistory[]>;
addHistory: (password: string) => Promise<any>;
clear: () => Promise<any>;
2018-01-09 23:55:32 +01:00
}