Files
klz-cables.com/.pnpm-store/v10/files/29/64c2c2a9179540f13a2a2f0d2a9a4a8ee018ad1c294cbc45a17f65930085e6a5064f0bfee353a4f7d698bbfc429ec21bb59d332f3afeb7ab8964d847969884
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
815 B
Plaintext

import { DirectusComment } from "../../../schema/comment.cjs";
import { Query } from "../../../types/query.cjs";
import { RestCommand } from "../../types.cjs";
//#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.cts.map