Files
gpx.studio/website/src/lib/components/toolbar/tools.ts
2025-10-17 23:54:45 +02:00

16 lines
258 B
TypeScript

import { writable, type Writable } from 'svelte/store';
export enum Tool {
ROUTING,
WAYPOINT,
SCISSORS,
TIME,
MERGE,
EXTRACT,
ELEVATION,
REDUCE,
CLEAN,
}
export const currentTool: Writable<Tool | null> = writable(null);