mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 07:43:35 +00:00
11 lines
340 B
TypeScript
11 lines
340 B
TypeScript
/** Settings supported when generating an email subaddress */
|
|
export type SubaddressGenerationOptions = {
|
|
type?: "random" | "website-name";
|
|
email?: string;
|
|
};
|
|
|
|
/** The default options for email subaddress generation. */
|
|
export const DefaultSubaddressOptions: Partial<SubaddressGenerationOptions> = Object.freeze({
|
|
type: "random",
|
|
});
|