mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-12-05 03:12:13 +00:00
progress
This commit is contained in:
15
website/src/lib/components/toolbar/tools.ts
Normal file
15
website/src/lib/components/toolbar/tools.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
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);
|
||||
Reference in New Issue
Block a user