EarthSDK
    正在准备搜索索引...

    类型别名 ESTool

    type ESTool = {
        func: (args: any) => Promise<CallToolResult>;
        name: string;
        params: {
            description: string;
            inputSchema: ZodRawShape;
            outputSchema?: ZodRawShape;
        };
    }
    索引

    属性

    func: (args: any) => Promise<CallToolResult>
    name: string
    params: {
        description: string;
        inputSchema: ZodRawShape;
        outputSchema?: ZodRawShape;
    }