Files
klz-cables.com/.pnpm-store/v10/files/a9/440e415c1dd1726df482306338eedacab0199f7838b166c5fd8c0cb490bac3ff38767965683a65c9ab0e84cb6ecf23cf4c983b3ffad436c4a31587fc947554
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

9 lines
588 B
Plaintext

import type { Column, SQL } from 'drizzle-orm';
import type { DrizzleAdapter } from '../types.js';
export declare function jsonAgg(adapter: DrizzleAdapter, expression: SQL): SQL<unknown>;
/**
* @param shape Potential for SQL injections, so you shouldn't allow user-specified key names
*/
export declare function jsonBuildObject<T extends Record<string, Column | SQL>>(adapter: DrizzleAdapter, shape: T): SQL<unknown>;
export declare const jsonAggBuildObject: <T extends Record<string, Column | SQL>>(adapter: DrizzleAdapter, shape: T) => SQL<unknown>;
//# sourceMappingURL=json.d.ts.map