Files
klz-cables.com/.pnpm-store/v10/files/6f/781dff9dd61f5fdfb8e3f30f7ea12664507cb63a9801474fbbaeaeab4f37d73526279a2d142967ccb371aad9d7a75fc0590e9c0dce2b5f9057a68ee8525ea4
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
642 B
Plaintext

import { DirectusFile } from "../../../schema/file.js";
import { RestCommand } from "../../types.js";
//#region src/rest/commands/delete/files.d.ts
/**
* Delete multiple files at once.
* @param keys
* @returns
* @throws Will throw if keys is empty
*/
declare const deleteFiles: <Schema>(keys: DirectusFile<Schema>["id"][]) => RestCommand<void, Schema>;
/**
* Delete an existing file.
* @param key
* @returns
* @throws Will throw if key is empty
*/
declare const deleteFile: <Schema>(key: DirectusFile<Schema>["id"]) => RestCommand<void, Schema>;
//#endregion
export { deleteFile, deleteFiles };
//# sourceMappingURL=files.d.ts.map