Files
klz-cables.com/.pnpm-store/v10/files/11/dc4343150fc01478f663a5df7d9c8b116a00d3ccbc18a307bdf340fc217740817e398583f223a45fb29305267595415842367e02be028ec2387550b82813e3
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 { DirectusShare } from "../../../schema/share.cjs";
import { RestCommand } from "../../types.cjs";
//#region src/rest/commands/delete/shares.d.ts
/**
* Delete multiple existing shares.
* @param keys
* @returns
* @throws Will throw if keys is empty
*/
declare const deleteShares: <Schema>(keys: DirectusShare<Schema>["id"][]) => RestCommand<void, Schema>;
/**
* Delete an existing share.
* @param key
* @returns
* @throws Will throw if key is empty
*/
declare const deleteShare: <Schema>(key: DirectusShare<Schema>["id"]) => RestCommand<void, Schema>;
//#endregion
export { deleteShare, deleteShares };
//# sourceMappingURL=shares.d.cts.map