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