Files
klz-cables.com/.pnpm-store/v10/files/23/9dcafa9ec9b3601c5063f27e25d94f4f8b51e231387b2b81b297542418110ee02389a11b8f50f4adff6bb4e71cf1c3a1f6244056e7ba6a70d37302ab7e6364
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

6 lines
446 B
Plaintext

import { type Column, type SQL } from 'drizzle-orm';
type OperatorKeys = 'and' | 'contains' | 'equals' | 'exists' | 'greater_than' | 'greater_than_equal' | 'in' | 'isNull' | 'less_than' | 'less_than_equal' | 'like' | 'not_equals' | 'not_in' | 'not_like' | 'or';
export type Operators = Record<OperatorKeys, (column: Column, value: unknown) => SQL>;
export declare const operatorMap: Operators;
export {};
//# sourceMappingURL=operatorMap.d.ts.map