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
22 lines
726 B
Plaintext
22 lines
726 B
Plaintext
import { DirectusVersion } from "../../../schema/version.cjs";
|
|
import { RestCommand } from "../../types.cjs";
|
|
|
|
//#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.cts.map |