1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 01:33:33 +00:00

[TDL-192] Rename email forwarders per ADR #12 (#4107)

This commit is contained in:
Daniel James Smith
2022-11-24 14:55:24 +01:00
committed by GitHub
parent 7fbfce953d
commit 175eef5376
9 changed files with 13 additions and 20 deletions

View File

@@ -0,0 +1,7 @@
import { ApiService } from "../abstractions/api.service";
import { ForwarderOptions } from "./forwarder-options";
export interface Forwarder {
generate(apiService: ApiService, options: ForwarderOptions): Promise<string>;
}