Skip to content

Instantly share code, notes, and snippets.

@intojs
Created December 1, 2019 02:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save intojs/7fe78a71cfdfeb0fde136d241d7bc434 to your computer and use it in GitHub Desktop.
Save intojs/7fe78a71cfdfeb0fde136d241d7bc434 to your computer and use it in GitHub Desktop.
Email Service
import { CalculateLoanRes } from '../useCases/CalculateLoanRes';
export interface EmailServ {
send(email: string): Promise<string>;
generateEmail(calculation: CalculateLoanRes): string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment