mirror of
https://github.com/bitwarden/browser
synced 2025-12-10 13:23:34 +00:00
15 lines
283 B
TypeScript
15 lines
283 B
TypeScript
export class ForwarderOptions {
|
|
apiKey: string;
|
|
website: string;
|
|
fastmail = new FastmailForwarderOptions();
|
|
anonaddy = new AnonAddyForwarderOptions();
|
|
}
|
|
|
|
export class FastmailForwarderOptions {
|
|
prefix: string;
|
|
}
|
|
|
|
export class AnonAddyForwarderOptions {
|
|
domain: string;
|
|
}
|