Files
klz-cables.com/.pnpm-store/v10/files/9b/2a7096053f11a8653f8b06efc9edbce63807587f93562cadeb09daf01573cee6b0867e65bc6887d9e994cb8d43a3cd13a0fce7ac13e358fdb3db80928177cf
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
574 B
Plaintext

import { DirectusField } from "../../../schema/field.js";
import { RestCommand } from "../../types.js";
//#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.ts.map