mirror of
https://github.com/bitwarden/directory-connector
synced 2026-01-04 17:43:31 +00:00
9 lines
352 B
TypeScript
9 lines
352 B
TypeScript
export abstract class UsernameGenerationService {
|
|
generateUsername: (options: any) => Promise<string>;
|
|
generateWord: (options: any) => Promise<string>;
|
|
generateSubaddress: (options: any) => Promise<string>;
|
|
generateCatchall: (options: any) => Promise<string>;
|
|
getOptions: () => Promise<any>;
|
|
saveOptions: (options: any) => Promise<void>;
|
|
}
|