Files
klz-cables.com/.pnpm-store/v10/files/b2/812d04ea058e0fa2163afc8d3918614b745f7cf367071a94c94481d1d17d976b46a78346f18c9a4762c1518bb12ded9f32036aa0db2404a9fc33ae0e48c32d
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
710 B
Plaintext

import { DirectusExtension } from "../../../schema/extension.cjs";
import { NestedPartial } from "../../../types/utils.cjs";
import { RestCommand } from "../../types.cjs";
//#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.cts.map