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
17 lines
710 B
Plaintext
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 |