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

22 lines
670 B
Plaintext

import { DirectusFolder } from "../../../schema/folder.cjs";
import { RestCommand } from "../../types.cjs";
//#region src/rest/commands/delete/folders.d.ts
/**
* Delete multiple existing folders.
* @param keys
* @returns
* @throws Will throw if keys is empty
*/
declare const deleteFolders: <Schema>(keys: DirectusFolder<Schema>["id"][]) => RestCommand<void, Schema>;
/**
* Delete an existing folder.
* @param key
* @returns
* @throws Will throw if key is empty
*/
declare const deleteFolder: <Schema>(key: DirectusFolder<Schema>["id"]) => RestCommand<void, Schema>;
//#endregion
export { deleteFolder, deleteFolders };
//# sourceMappingURL=folders.d.cts.map