Files
klz-cables.com/.pnpm-store/v10/files/10/03e8e5d26f22a9edd6260133924ebc8619d541249c76efc53e06ab5d5a8487545493a3d1afc906b38a975688bb19b6d3658fd27713ff8fc87c3728761ca4fc
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

19 lines
737 B
Plaintext

/**
* Implemented from:
* https://github.com/drizzle-team/drizzle-orm/blob/main/drizzle-orm/src/pg-core/table.ts#L73
* Drizzle uses @internal JSDoc to remove their internal methods from types, for example
* Table.Symbol, columnBuilder.build - but they actually exist.
*/
import type { ColumnBuilderBase } from 'drizzle-orm';
import { Table } from 'drizzle-orm';
type Args = {
columns?: Record<string, ColumnBuilderBase<any>>;
extraConfig?: (self: Record<string, any>) => object;
table: Table;
};
/**
* Extends the passed table with additional columns / extra config
*/
export declare const extendDrizzleTable: ({ columns, extraConfig, table }: Args) => void;
export {};
//# sourceMappingURL=extendDrizzleTable.d.ts.map