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

11 lines
340 B
Plaintext

import { MergeCoreCollection } from "../types/schema.cjs";
//#region src/schema/folder.d.ts
type DirectusFolder<Schema = any> = MergeCoreCollection<Schema, 'directus_folders', {
id: string;
name: string;
parent: DirectusFolder<Schema> | string | null;
}>;
//#endregion
export { DirectusFolder };
//# sourceMappingURL=folder.d.cts.map