Files
home/Projects/kompose/news/apps/backend/prisma/client/sql/countDistinctRecipientsInTimeRange.d.ts

23 lines
517 B
TypeScript
Raw Normal View History

2025-10-08 10:35:48 +02:00
import * as $runtime from "../runtime/library";
/**
* @param text
* @param timestamp
* @param timestamp
*/
export const countDistinctRecipientsInTimeRange: (
2025-10-10 16:43:21 +02:00
text: string,
timestamp: Date,
timestamp: Date,
2025-10-08 10:35:48 +02:00
) => $runtime.TypedSql<
2025-10-10 16:43:21 +02:00
countDistinctRecipientsInTimeRange.Parameters,
countDistinctRecipientsInTimeRange.Result
2025-10-08 10:35:48 +02:00
>;
export namespace countDistinctRecipientsInTimeRange {
2025-10-10 16:43:21 +02:00
export type Parameters = [text: string, timestamp: Date, timestamp: Date];
export type Result = {
count: bigint | null;
};
2025-10-08 10:35:48 +02:00
}