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: (bundle: string | null, name: string, data: NestedPartial>) => RestCommand, Schema>; //#endregion export { updateExtension }; //# sourceMappingURL=extensions.d.ts.map