feat: add dimension tools for new flow

This commit is contained in:
2026-09-05 10:06:25 +05:00
parent 1e9b35406d
commit 2601aa5b5c
12 changed files with 325 additions and 45 deletions
+2
View File
@@ -5,6 +5,7 @@ import { convertEntries } from "./convert";
import { analyzeEntries } from "./analyze";
import { filtersEntries } from "./filters";
import { colorEntries } from "./color";
import { generateEntries } from "./generate";
export type { ToolEntry } from "./types";
@@ -15,6 +16,7 @@ export const TOOLS: ToolEntry[] = [
...analyzeEntries,
...filtersEntries,
...colorEntries,
...generateEntries,
] as unknown as ToolEntry[];
export function getTool(id: string): ToolEntry | undefined {