import type { OperationEvents } from '../../events/index.js'; import type { WorkspaceDocument } from '../../schemas.js'; /** * Updates an extension of the operation * * @example * ```ts * updateOperationExtension({ * document, * meta: { method: 'get', path: '/users' }, * payload: { 'x-post-response': 'console.log(response)' }, * }) * ``` */ export declare const updateOperationExtension: (document: WorkspaceDocument | null, { meta, payload }: OperationEvents["operation:update:extension"]) => void; //# sourceMappingURL=extensions.d.ts.map