feat(tools): add brush raster painting

This commit is contained in:
syntaxbullet
2026-07-03 17:37:43 +02:00
parent 665f4a5340
commit 9fc0c18114
11 changed files with 188 additions and 9 deletions

View File

@@ -1,4 +1,4 @@
export const availableToolIds = ["select", "crop", "pan"] as const;
export const availableToolIds = ["select", "crop", "brush", "pan"] as const;
export type ToolId = (typeof availableToolIds)[number];