Files
klz-cables.com/.pnpm-store/v10/files/62/9c8dadb1651d17460352b3899bcefeec66c04389e81a2dde709cf2ed6f1d559954a3367d6515f0e492a205d8a143cce1ae794df408f205b6eefda7b81f8041
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
646 B
Plaintext

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