Files
klz-cables.com/.pnpm-store/v10/files/7f/9808fb31b59bf59a634c86042eddfe546a264e1183f3516a5855916b29625de7fc5ad7fae2df53dfd8c217efad137dd3229b440a19e4e8b9fd15a6c50e42d1
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

20 lines
664 B
Plaintext

/**
* @deprecated - will be removed in 4.0. Use query + $dynamic() instead: https://orm.drizzle.team/docs/dynamic-query-building
*/
export type ChainedMethods = {
args: unknown[];
method: string;
}[];
/**
* Call and returning methods that would normally be chained together but cannot be because of control logic
* @param methods
* @param query
*
* @deprecated - will be removed in 4.0. Use query + $dynamic() instead: https://orm.drizzle.team/docs/dynamic-query-building
*/
declare const chainMethods: <T>({ methods, query }: {
methods: ChainedMethods;
query: T;
}) => T;
export { chainMethods };
//# sourceMappingURL=chainMethods.d.ts.map