UNPKG

@agentek/tools

Version:

Blockchain tools for AI agents

12 lines 354 B
import type { BaseTool } from "../client.js"; export type TwitterToolsConfig = ({ xBearerToken: string; } | { xApiKey: string; xApiKeySecret: string; }) & { xAccessToken?: string; xAccessTokenSecret?: string; }; export declare function twitterTools(config: TwitterToolsConfig): Promise<BaseTool[]>; //# sourceMappingURL=index.d.ts.map