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

15 lines
587 B
Plaintext

import type { Block, Field, FlattenedBlock, FlattenedField } from '../fields/config/types.js';
export declare const flattenBlock: ({ block }: {
block: Block;
}) => FlattenedBlock;
/**
* Flattens all fields in a collection, preserving the nested field structure.
* @param cache
* @param fields
*/
export declare const flattenAllFields: ({ cache, fields, }: {
/** Allows you to get FlattenedField[] from Field[] anywhere without performance overhead by caching. */
cache?: boolean;
fields: Field[];
}) => FlattenedField[];
//# sourceMappingURL=flattenAllFields.d.ts.map