Skip to content

Instantly share code, notes, and snippets.

@intojs
Created December 1, 2019 02:28
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/5a57050c7ac2581fe52aa4607a7fadf2 to your computer and use it in GitHub Desktop.
Save intojs/5a57050c7ac2581fe52aa4607a7fadf2 to your computer and use it in GitHub Desktop.
Loan Repo
export interface LoanRepo {
findOne(address: EmailAddress): Promise<LoanCalculation | undefined>;
save(calculation: LoanCalculation): Promise<void>;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment