UNPKG

@artinet/sdk

Version:

A TypeScript SDK for building collaborative AI agents.

12 lines (11 loc) 325 B
/** * Copyright 2025 The Artinet Project * SPDX-License-Identifier: Apache-2.0 */ import { A2A } from "../../../types/index.js"; export declare const getTask: A2A.Handles["getTask"]; export type GetTaskHandler = typeof getTask; /** * @deprecated Use GetTaskHandler instead */ export type GetTaskMethod = GetTaskHandler;