mirror of
https://github.com/bitwarden/jslib
synced 2026-01-09 03:53:18 +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>;
|
|
}
|