chore: remove unused type

This commit is contained in:
Ephraim Atta-Duncan
2025-01-30 05:20:38 +00:00
parent cdb980bd4c
commit 8d85d01c93

View File

@ -91,12 +91,6 @@ export type GetMonthlyActiveUsersResult = Array<{
cume_count: number;
}>;
type GetMonthlyActiveUsersQueryResult = Array<{
month: Date;
count: bigint;
cume_count: bigint;
}>;
export const getMonthlyActiveUsers = async () => {
const qb = kyselyPrisma.$kysely
.selectFrom('UserSecurityAuditLog')