Files
klz-cables.com/.pnpm-store/v10/files/35/12b2b4c1df4a582417ffdf470e96df600625df65d9347f230c30ec36fed872232e7bfb68efbfbedc03ac9431e624fe65c7fa5b039723f1f45abb95e012e8f5
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

23 lines
811 B
Plaintext

import { DirectusComment } from "../../../schema/comment.js";
import { Query } from "../../../types/query.js";
import { RestCommand } from "../../types.js";
//#region src/rest/commands/delete/comments.d.ts
/**
* Delete multiple existing comments.
* @param keysOrQuery The primary keys or a query
* @returns
* @throws Will throw if keys is empty
*/
declare const deleteComments: <Schema>(keysOrQuery: DirectusComment<Schema>["id"][] | Query<Schema, DirectusComment<Schema>>) => RestCommand<void, Schema>;
/**
* Delete an existing comment.
* @param key
* @returns
* @throws Will throw if key is empty
*/
declare const deleteComment: <Schema>(key: DirectusComment<Schema>["id"]) => RestCommand<void, Schema>;
//#endregion
export { deleteComment, deleteComments };
//# sourceMappingURL=comments.d.ts.map