Files
klz-cables.com/.pnpm-store/v10/files/fb/8069f8441769d5b17b5bdb870951c7cb61f9d008b6088d91b2350055eb5693220f449a5369834ae93b42a67915e5420a66a67c275d80562010b1a35ef4b076
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
645 B
Plaintext

import { DirectusFile } from "../../../schema/file.cjs";
import { RestCommand } from "../../types.cjs";
//#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.cts.map