fix: re-add removed types

This commit is contained in:
Mythie
2024-05-29 20:53:50 +10:00
parent ab949afbb6
commit 4a6b5ceaf8
4 changed files with 10 additions and 4 deletions

View File

@@ -27,3 +27,5 @@ export const getUserMonthlyGrowth = async () => {
cume_count: Number(row.cume_count),
}));
};
export type GetUserMonthlyGrowthResult = Awaited<ReturnType<typeof getUserMonthlyGrowth>>;