File size: 200 Bytes
57aa51e
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import type { ToolAction } from '@mastra/core/tools';

export type ToolReturn = ToolAction<any, any, any, any, any, any>;

export interface AgentToolInterface {
  name: string;
  run(): ToolReturn;
}