Files
klz-cables.com/.pnpm-store/v10/files/49/1e40174421e96a081bc9c2bf1693ba3bcaa23126218f94f45c9bf163090e97ebde9e71fd575c5f50c95a60bcb09f9f6b302c134782ffc8a3f2308f3e209a1e
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

24 lines
499 B
Plaintext

import type { CollectionAfterChangeHook } from '../../index.js';
/**
* If a parent is moved into a child folder, we need to re-parent the child
*
* @example
*
* ```ts
→ F1
→ F2
→ F2A
→ F3
Moving F1 → F2A becomes:
→ F2A
→ F1
→ F2
→ F3
```
*/
export declare const reparentChildFolder: ({ folderFieldName, }: {
folderFieldName: string;
}) => CollectionAfterChangeHook;
//# sourceMappingURL=reparentChildFolder.d.ts.map