/** * Service responsible for generating random passwords and usernames. */ export abstract class CipherFormGenerationService { /** * Generates a random password. Called when the user clicks the "Generate Password" button in the UI. */ abstract generatePassword(): Promise; /** * Generates a random username. Called when the user clicks the "Generate Username" button in the UI. * @param uri The URI associated with the username generation request. */ abstract generateUsername(uri: string): Promise; }