mirror of
https://github.com/bitwarden/jslib
synced 2025-12-18 01:03:26 +00:00
11 lines
378 B
TypeScript
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>;
|
|
}
|