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
|
|
|
}
|