Files
klz-cables.com/.pnpm-store/v10/files/b9/698813334a30a9b3b53e00a1412611c57a3b912d806f04aff601d31256d12668086cf253f32fab47eaa008dce05ccf432525a965e2c1126e291b4ab7527b42
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
713 B
Plaintext

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