Files
klz-cables.com/.pnpm-store/v10/files/84/c8f44ee64808556e52806dfe59772fa951dddd2b36e97e96fd49b4a5f1da262630e0a08ef6b8dbcdd866788efc75bdf5fedacce66984e2fe0844f755a86a8b
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

17 lines
550 B
Plaintext

import { BaseSQLiteDatabase } from "../../sqlite-core/index.cjs";
import type { DrizzleConfig } from "../../utils.cjs";
export type PrismaSQLiteDatabase = BaseSQLiteDatabase<'async', []>;
export type PrismaSQLiteConfig = Omit<DrizzleConfig, 'schema'>;
export declare function drizzle(config?: PrismaSQLiteConfig): (client: any) => {
$extends: {
extArgs: {
result: {};
model: {};
query: {};
client: {
$drizzle: () => PrismaSQLiteDatabase;
};
};
};
};