Files
klz-cables.com/.pnpm-store/v10/files/5e/471ee478950459beda8178d98a785cb6063fe80438adebc7b4ed23609c1fe7fb543d4547d86a86f9e62044f4cc15272a8daec5ca92dab476b5ed05f3ddfd35
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

16 lines
648 B
Plaintext

import type { Block } from '../fields/config/types.js';
import type { SelectMode, SelectType } from '../types/index.js';
/**
* This is used for the Select API to determine the select level of a block.
* It will ensure that `id` and `blockType` are always included in the select object.
* @returns { blockSelect: boolean | SelectType, blockSelectMode: SelectMode }
*/
export declare const getBlockSelect: ({ block, select, selectMode, }: {
block: Block;
select: SelectType[string];
selectMode: SelectMode;
}) => {
blockSelect: boolean | SelectType;
blockSelectMode: SelectMode;
};
//# sourceMappingURL=getBlockSelect.d.ts.map