Adjusted return type, since async is no longer needed here (thanks to db relations)

ref #56
This commit is contained in:
Nicolai Ort 2020-12-29 15:23:29 +01:00
parent ded14b1b3b
commit bdd4f705be

View File

@ -31,5 +31,5 @@ export abstract class Donation {
* The donation's amount in cents (or whatever your currency's smallest unit is.).
* The exact implementation may differ for each type of donation.
*/
abstract amount: number | Promise<number>;
abstract amount: number;
}