Massive/count-many.ts
Brandon Presley 3714db438e Fix max number of sets for plan
Previously we were trying to get the max # of sets
from our query on the number of sets completed for today.
This meant if we hadn't completed any sets today, we would
get no result for that workout.
2022-10-16 16:46:38 +13:00

5 lines
72 B
TypeScript

export default interface CountMany {
name: string;
total: number;
}