Files
klz-cables.com/.pnpm-store/v10/files/78/0fec858856ae4c1ab2988b3f85c01be20bbdae4114696921328ffd95e8d59b814093b207073a5807c5d0a74b84785c5796f22cc32dc49df67749ac1d5e048d
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
706 B
Plaintext

import { DirectusExtension } from "../../../schema/extension.js";
import { NestedPartial } from "../../../types/utils.js";
import { RestCommand } from "../../types.js";
//#region src/rest/commands/update/extensions.d.ts
/**
* Update an existing extension.
* @param bundle - Bundle this extension is in
* @param name - Unique name of the extension
* @param data - Partial extension object
* @returns Returns the extension that was updated
*/
declare const updateExtension: <Schema>(bundle: string | null, name: string, data: NestedPartial<DirectusExtension<Schema>>) => RestCommand<DirectusExtension<Schema>, Schema>;
//#endregion
export { updateExtension };
//# sourceMappingURL=extensions.d.ts.map