feature/56-stats_endpoint #60

Merged
niggl merged 37 commits from feature/56-stats_endpoint into dev 2020-12-30 16:49:21 +00:00
Showing only changes of commit bdd4f705be - Show all commits

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;
}