mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2025-12-05 03:12:13 +00:00
progress
This commit is contained in:
17
website/src/lib/components/toolbar/utils.svelte.ts
Normal file
17
website/src/lib/components/toolbar/utils.svelte.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
export enum Tool {
|
||||
ROUTING,
|
||||
WAYPOINT,
|
||||
SCISSORS,
|
||||
TIME,
|
||||
MERGE,
|
||||
EXTRACT,
|
||||
ELEVATION,
|
||||
REDUCE,
|
||||
CLEAN,
|
||||
}
|
||||
|
||||
export const tool: {
|
||||
current: Tool | null;
|
||||
} = $state({
|
||||
current: null,
|
||||
});
|
||||
Reference in New Issue
Block a user