Files
klz-cables.com/.pnpm-store/v10/files/bd/bf8f35764791c42eea37d45f557d84d9f85f3105ceb15199e5ffea2416d2ad937d797c9cfa53c06d5e1aa7df4243f7258ac5e405a2c6f3287e1051cd8adf79
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

17 lines
577 B
Plaintext

import { DirectusField } from "../../../schema/field.cjs";
import { RestCommand } from "../../types.cjs";
//#region src/rest/commands/delete/fields.d.ts
/**
* Deletes the given field in the given collection.
* @param collection
* @param field
* @returns
* @throws Will throw if collection is empty
* @throws Will throw if field is empty
*/
declare const deleteField: <Schema>(collection: DirectusField<Schema>["collection"], field: DirectusField<Schema>["field"]) => RestCommand<void, Schema>;
//#endregion
export { deleteField };
//# sourceMappingURL=fields.d.cts.map