Files
klz-cables.com/.pnpm-store/v10/files/7f/6967dc75d92e27609f75c2b1dc6bb9c23e841a285652454b6b7a1c365b8412ca0f36e75ad5239e6cdbed9c3091095a5a5282e51b8c7bda66d490498337ef61
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
658 B
Plaintext

import { DirectusPanel } from "../../../schema/panel.cjs";
import { RestCommand } from "../../types.cjs";
//#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.cts.map