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: (keysOrQuery: DirectusComment["id"][] | Query>) => RestCommand; /** * Delete an existing comment. * @param key * @returns * @throws Will throw if key is empty */ declare const deleteComment: (key: DirectusComment["id"]) => RestCommand; //#endregion export { deleteComment, deleteComments }; //# sourceMappingURL=comments.d.ts.map