Files
home/Projects/kompose/news/apps/backend/prisma/client/sql/countDistinctRecipientsInTimeRange.d.ts
2025-10-10 16:43:21 +02:00

23 lines
517 B
TypeScript

import * as $runtime from "../runtime/library";
/**
* @param text
* @param timestamp
* @param timestamp
*/
export const countDistinctRecipientsInTimeRange: (
text: string,
timestamp: Date,
timestamp: Date,
) => $runtime.TypedSql<
countDistinctRecipientsInTimeRange.Parameters,
countDistinctRecipientsInTimeRange.Result
>;
export namespace countDistinctRecipientsInTimeRange {
export type Parameters = [text: string, timestamp: Date, timestamp: Date];
export type Result = {
count: bigint | null;
};
}