Files
klz-cables.com/.pnpm-store/v10/files/96/385fe95ae9bd4c65380dfbaa36cea8858750f4a0ca5f88fbe6ac5acfdfd8d5d7e6131df7def52ac87fd53a783d66f1e250d902a8663449a3174129f2d2583d
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
655 B
Plaintext

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