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

19 lines
363 B
TypeScript
Raw Normal View History

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