Files
klz-cables.com/.pnpm-store/v10/files/f0/109dc453b6f0272d4ec870a5de6938d33f7d77e788baa827db706e182af26be7817ec799d0f9286f768910565624f1984a5be275c0638ec74b77bde3e1ddc9
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

10 lines
379 B
Plaintext

import type { ClientFieldBase } from '../types.js';
type HiddenFieldBaseClientProps = {
readonly disableModifyingForm?: false;
readonly field?: never;
readonly path: string;
readonly value?: unknown;
};
export type HiddenFieldProps = HiddenFieldBaseClientProps & Pick<ClientFieldBase, 'forceRender' | 'schemaPath'>;
export {};
//# sourceMappingURL=Hidden.d.ts.map