Files
klz-cables.com/.pnpm-store/v10/files/4a/6d87c4dae4cee1a04bf2dbd40297a155bddfc8482867bf1ddbdd844c3024a84fc26707474ec10d6a5bde8be234cf7d93227363b1e592828cf2c30324adb225
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
667 B
Plaintext

import { DirectusFolder } from "../../../schema/folder.js";
import { RestCommand } from "../../types.js";
//#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.ts.map