1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-18 01:03:26 +00:00
Files
jslib/src/abstractions/passwordGeneration.service.ts
Kyle Spearrin 166ed44392 Revert "reference barrels"
This reverts commit 2d9f53fbed.
2018-02-19 13:07:19 -05:00

11 lines
378 B
TypeScript

import { PasswordHistory } from '../models/domain/passwordHistory';
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>;
}