UNPKG

tldraw

Version:

A tiny little drawing editor.

9 lines (7 loc) 389 B
import { EraserTool } from './tools/EraserTool/EraserTool' import { HandTool } from './tools/HandTool/HandTool' import { LaserTool } from './tools/LaserTool/LaserTool' import { SelectTool } from './tools/SelectTool/SelectTool' import { ZoomTool } from './tools/ZoomTool/ZoomTool' /** @public */ export const defaultTools = [EraserTool, HandTool, LaserTool, ZoomTool, SelectTool] as const