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

9 lines
486 B
Plaintext

import { entityKind } from "../entity.cjs";
import { type ColumnsSelection, View } from "../sql/sql.cjs";
export declare abstract class GelViewBase<TName extends string = string, TExisting extends boolean = boolean, TSelectedFields extends ColumnsSelection = ColumnsSelection> extends View<TName, TExisting, TSelectedFields> {
static readonly [entityKind]: string;
readonly _: View<TName, TExisting, TSelectedFields>['_'] & {
readonly viewBrand: 'GelViewBase';
};
}