Files
klz-cables.com/.pnpm-store/v10/files/2c/b0976a88471b9999cff0b50d6d6e89f36cbc2cca370faa1048c47e991d004ecd3089e9542b2104cb4ae51a5cbb0b0e9c87a2a95a35b0b2d1ff4692f5203838
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
730 B
Plaintext

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