mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 00:33:44 +00:00
[SG-515] add fastmail integration for generator (#3318)
* add fastmail integration for generator * prettier * introduce forwarder interface and implementations
This commit is contained in:
15
libs/common/src/emailForwarders/forwarderOptions.ts
Normal file
15
libs/common/src/emailForwarders/forwarderOptions.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
export class ForwarderOptions {
|
||||
apiKey: string;
|
||||
website: string;
|
||||
fastmail = new FastmailForwarderOptions();
|
||||
anonaddy = new AnonAddyForwarderOptions();
|
||||
}
|
||||
|
||||
export class FastmailForwarderOptions {
|
||||
accountId: string;
|
||||
prefix: string;
|
||||
}
|
||||
|
||||
export class AnonAddyForwarderOptions {
|
||||
domain: string;
|
||||
}
|
||||
Reference in New Issue
Block a user