Files
klz-cables.com/.pnpm-store/v10/files/5a/17bf653e1c6950ee96c3efbceba997fce8fbaac156e0ca50687e040f128467000c4b15dcda66d8b9d05e6c1fd174901a79285d2a31460502ea8762324df578
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
723 B
Plaintext

import { DirectusVersion } from "../../../schema/version.js";
import { RestCommand } from "../../types.js";
//#region src/rest/commands/delete/versions.d.ts
/**
* Delete multiple existing Content Versions.
* @param keys
* @returns
* @throws Will throw if keys is empty
*/
declare const deleteContentVersions: <Schema>(keys: DirectusVersion<Schema>["id"][]) => RestCommand<void, Schema>;
/**
* Delete an existing Content Version.
* @param key
* @returns
* @throws Will throw if key is empty
*/
declare const deleteContentVersion: <Schema>(key: DirectusVersion<Schema>["id"]) => RestCommand<void, Schema>;
//#endregion
export { deleteContentVersion, deleteContentVersions };
//# sourceMappingURL=versions.d.ts.map