Files
klz-cables.com/.pnpm-store/v10/files/29/1ea1a0a863c9a8c927896161a6d1ba357e0ba533c460681bb8d1aa1b5c6fcc576cd24f73545918a65cd96b6c01b5c3167461b2e06dbbc91e663d1ba0d52987
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
484 B
Plaintext

import { entityKind } from "../entity.js";
import { type ColumnsSelection, View } from "../sql/sql.js";
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';
};
}