Files
klz-cables.com/.pnpm-store/v10/files/f1/45a134016d470afbff65301a08cbed36a639b390bcf7e810b81d56578317025b379eaac568b16ae46d1658f8461e1b30ea0cb352b42be35d9e43b16d0b7404
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

16 lines
527 B
Plaintext

import { blob } from "./blob.cjs";
import { customType } from "./custom.cjs";
import { integer } from "./integer.cjs";
import { numeric } from "./numeric.cjs";
import { real } from "./real.cjs";
import { text } from "./text.cjs";
export declare function getSQLiteColumnBuilders(): {
blob: typeof blob;
customType: typeof customType;
integer: typeof integer;
numeric: typeof numeric;
real: typeof real;
text: typeof text;
};
export type SQLiteColumnBuilders = ReturnType<typeof getSQLiteColumnBuilders>;