UNPKG

patrick-mades-dev-tools

Version:

A collection of development tools and utilities Made by Patrick Made for Patrick Made (but feel free to use it for your own projects)

12 lines (11 loc) 333 B
/** * Auto Register Tools * Automatically registers tools from the tools directory */ import { ToolDefinition } from '../types'; /** * Auto-registers all tools from the tools directory * @returns Array of registered tool definitions */ declare const autoRegisterTools: () => ToolDefinition[]; export default autoRegisterTools;