style(ts): normalize type-only imports

This commit is contained in:
Peter Steinberger
2026-01-04 21:56:16 +01:00
parent 39be40cd23
commit 2ceceb8c25
6 changed files with 44 additions and 18 deletions

View File

@@ -1,16 +1,16 @@
import type { ClawdbotConfig } from "../config/config.js";
import { createBrowserTool } from "./tools/browser-tool.js";
import { createCanvasTool } from "./tools/canvas-tool.js";
import type { AnyAgentTool } from "./tools/common.js";
import { createCronTool } from "./tools/cron-tool.js";
import { createDiscordTool } from "./tools/discord-tool.js";
import { createGatewayTool } from "./tools/gateway-tool.js";
import { createImageTool } from "./tools/image-tool.js";
import { createNodesTool } from "./tools/nodes-tool.js";
import { createSessionsHistoryTool } from "./tools/sessions-history-tool.js";
import { createSessionsListTool } from "./tools/sessions-list-tool.js";
import { createSessionsSendTool } from "./tools/sessions-send-tool.js";
import { createSlackTool } from "./tools/slack-tool.js";
import { createImageTool } from "./tools/image-tool.js";
import type { ClawdbotConfig } from "../config/config.js";
export function createClawdbotTools(options?: {
browserControlUrl?: string;