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: (collection: DirectusField["collection"], field: DirectusField["field"]) => RestCommand; //#endregion export { deleteField }; //# sourceMappingURL=fields.d.ts.map