This commit is contained in:
Benjamin Toby
2025-06-01 12:32:16 +01:00
parent cd96c11817
commit 8639c9f34d
11 changed files with 257 additions and 136 deletions
@@ -4,8 +4,5 @@ type Param = {
userId: string | number;
dummy?: boolean;
};
export default function addQueue({ queue, userId, dummy }: Param): Promise<(import("../../../types").PostReturn & {
queryObject?: ReturnType<Awaited<typeof import("../../dsql/sql/sql-generator").default>>;
count?: number;
}) | null | undefined>;
export default function addQueue({ queue, userId, dummy }: Param): Promise<import("../../../utils/data-fetching/crud").DsqlCrudReturn | undefined>;
export {};