Files
klz-cables.com/.pnpm-store/v10/files/4d/fdde90d4bbdea906e4531cebe99cc50ee89eb034c727337c511d166d36cb266523ccaab8ae05b850142624dd451a1768e01aee3998fa6b9d8719ab527c10c6
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
742 B
Plaintext

import { DirectusNotification } from "../../../schema/notification.cjs";
import { RestCommand } from "../../types.cjs";
//#region src/rest/commands/delete/notifications.d.ts
/**
* Delete multiple existing notifications.
* @param keys
* @returns
* @throws Will throw if keys is empty
*/
declare const deleteNotifications: <Schema>(keys: DirectusNotification<Schema>["id"][]) => RestCommand<void, Schema>;
/**
* Delete an existing notification.
* @param key
* @returns
* @throws Will throw if key is empty
*/
declare const deleteNotification: <Schema>(key: DirectusNotification<Schema>["id"]) => RestCommand<void, Schema>;
//#endregion
export { deleteNotification, deleteNotifications };
//# sourceMappingURL=notifications.d.cts.map