Agent Client Protocol - v1.0.0
    Preparing search index...

    Type Alias AgentNotificationParamsByMethod

    AgentNotificationParamsByMethod: {
        [Method in AgentNotificationMethod]: AgentNotificationHandlersByMethod[Method] extends (
            context: infer Context,
        ) => MaybePromise<void>
            ? Context extends { params: infer Params } ? Params : never
            : never
    }

    Agent notification params keyed by ACP protocol method name.