import { PasswordHistory } from '../models/domain/passwordHistory'; export interface PasswordGenerationService { optionsCache: any; history: PasswordHistory[]; generatePassword(options: any): string; getOptions(): any; saveOptions(options: any): Promise; getHistory(): Promise; addHistory(password: string): Promise; clear(): Promise; }