Files
gpx.studio/website/src/lib/components/toolbar/tools.ts

16 lines
258 B
TypeScript
Raw Normal View History

2025-10-17 23:54:45 +02:00
import { writable, type Writable } from 'svelte/store';
2025-06-21 21:07:36 +02:00
export enum Tool {
ROUTING,
WAYPOINT,
SCISSORS,
TIME,
MERGE,
EXTRACT,
ELEVATION,
REDUCE,
CLEAN,
}
2025-10-17 23:54:45 +02:00
export const currentTool: Writable<Tool | null> = writable(null);