Files
klz-cables.com/.pnpm-store/v10/files/5c/1a8788576af1505cf205c8f671b387c209af3e34ff54accb6a6d2345e9306557ca20ffea59eb59758778bfab1ef2410bfd6e9dc0d34f931d82d8915834a9c5
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

8 lines
205 B
Plaintext

import type { Dialect } from "./column-builder.js";
export interface RunnableQuery<T, TDialect extends Dialect> {
readonly _: {
readonly dialect: TDialect;
readonly result: T;
};
}